LoongArch: Organize the code related to split move and merge the same functions.
[official-gcc.git] / gcc / testsuite / go.test / test / nul1.go
blobfbba19857b9cee4f01fe694b20b01e68222dfbd7
1 // errorcheckoutput
3 // Copyright 2009 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
7 // Test source files and strings containing NUL and invalid UTF-8.
9 package main
11 import (
12 "fmt"
13 "os"
16 func main() {
17 var s = "\xc2\xff"
18 var t = "\xd0\xfe"
19 var u = "\xab\x00\xfc"
21 if len(s) != 2 || s[0] != 0xc2 || s[1] != 0xff ||
22 len(t) != 2 || t[0] != 0xd0 || t[1] != 0xfe ||
23 len(u) != 3 || u[0] != 0xab || u[1] != 0x00 || u[2] != 0xfc {
24 println("BUG: non-UTF-8 string mangled")
25 os.Exit(2)
28 fmt.Print(`
29 package main
31 var x = "in string ` + "\x00" + `" // ERROR "NUL"
33 var y = ` + "`in raw string \x00 foo`" + ` // ERROR "NUL"
35 // in comment ` + "\x00" + ` // ERROR "NUL"
37 /* in other comment ` + "\x00" + ` */ // ERROR "NUL"
39 /* in source code */ ` + "\x00" + `// ERROR "NUL"
41 var xx = "in string ` + "\xc2\xff" + `" // ERROR "UTF-8"
43 var yy = ` + "`in raw string \xff foo`" + ` // ERROR "UTF-8"
45 // in comment ` + "\xe2\x80\x01" + ` // ERROR "UTF-8"
47 /* in other comment ` + "\xe0\x00\x00" + ` */ // ERROR "UTF-8|NUL"
49 /* in variable name */
50 var z` + "\xc1\x81" + ` int // ERROR "UTF-8"
52 /* in source code */ ` + "var \xc2A int" + `// ERROR "UTF-8"