mirror of
https://github.com/golang/go
synced 2024-11-13 15:50:22 -07:00
094ee44b32
SVN=121543
15 lines
486 B
Go
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
|
|
}
|