]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/nul1.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / nul1.go
index 026d397544a02319a097956fdbfd9b90723e9ba5..fbba19857b9cee4f01fe694b20b01e68222dfbd7 100644 (file)
@@ -1,6 +1,4 @@
-// $G $D/$F.go && $L $F.$A && ./$A.out >tmp.go &&
-// errchk $G -e tmp.go
-// rm -f tmp.go
+// errorcheckoutput
 
 // Copyright 2009 The Go Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style
@@ -23,7 +21,7 @@ func main() {
        if len(s) != 2 || s[0] != 0xc2 || s[1] != 0xff ||
                len(t) != 2 || t[0] != 0xd0 || t[1] != 0xfe ||
                len(u) != 3 || u[0] != 0xab || u[1] != 0x00 || u[2] != 0xfc {
-               println("BUG: non-UTF-8 string mangled");
+               println("BUG: non-UTF-8 string mangled")
                os.Exit(2)
        }
 
@@ -46,13 +44,12 @@ var yy = ` + "`in raw string \xff foo`" + `  // ERROR "UTF-8"
 
 // in comment ` + "\xe2\x80\x01" + `  // ERROR "UTF-8"
 
-/* in other comment ` + "\xe0\x00\x00" + ` */ // ERROR "UTF-8"
+/* in other comment ` + "\xe0\x00\x00" + ` */ // ERROR "UTF-8|NUL"
 
 /* in variable name */
 var z` + "\xc1\x81" + ` int // ERROR "UTF-8"
 
-/* in source code */ ` + "\xc2A" + `// ERROR "UTF-8"
+/* in source code */ ` + "var \xc2A int" + `// ERROR "UTF-8"
 
 `)
 }
-