]> Cypherpunks.ru repositories - gostls13.git/blob - test/fixedbugs/issue4405.go
b8458d77647b7bb9c9d6736e252a03a720ef3148
[gostls13.git] / test / fixedbugs / issue4405.go
1 // errorcheck
2
3 // Copyright 2012 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 p
8
9 const (
10         _ = iota
11         _\a // ERROR "illegal character|invalid character"
12         _\b  // ERROR "illegal character|invalid character"
13         _\v  // ERROR "illegal character|invalid character"
14         _\f  // ERROR "illegal character|invalid character"
15 )