1
0
mirror of https://github.com/golang/go synced 2024-10-04 14:31:21 -06:00
go/test/fixedbugs/bug014.go
Rob Pike 7b409b30f2 update some tests
SVN=124196
2008-06-23 17:13:33 -07:00

15 lines
486 B
Go

// errchk $G $D/$F.go
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
func main() {
var c00 uint8 = '\0'; // three octal required; should not compile
var c01 uint8 = '\07'; // three octal required; should not compile
var cx0 uint8 = '\x0'; // two hex required; should not compile
var cx1 uint8 = '\x'; // two hex required; REALLY should not compile
}