Rob Pike | 094ee44 | 2008-06-06 16:56:18 -0700 | [diff] [blame] | 1 | // $G $D/$F.go && $L $F.$A && ./$A.out |
| 2 | |
| 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. |
| 6 | |
| 7 | package main |
| 8 | |
| 9 | func main() { |
| 10 | var s2 string = "\a\b\f\n\r\t\v"; // \r is miscompiled |
Russ Cox | 1a31989 | 2009-09-14 21:03:53 -0700 | [diff] [blame] | 11 | _ = s2; |
Rob Pike | 094ee44 | 2008-06-06 16:56:18 -0700 | [diff] [blame] | 12 | } |
| 13 | /* |
| 14 | main.go.c: In function ‘main_main’: |
| 15 | main.go.c:20: error: missing terminating " character |
| 16 | main.go.c:21: error: missing terminating " character |
| 17 | main.go.c:24: error: ‘def’ undeclared (first use in this function) |
| 18 | main.go.c:24: error: (Each undeclared identifier is reported only once |
| 19 | main.go.c:24: error: for each function it appears in.) |
| 20 | main.go.c:24: error: syntax error before ‘def’ |
| 21 | main.go.c:24: error: missing terminating " character |
| 22 | main.go.c:25: warning: excess elements in struct initializer |
| 23 | main.go.c:25: warning: (near initialization for ‘slit’) |
| 24 | main.go.c:36: error: syntax error at end of input |
| 25 | */ |