Home | History | Annotate | Download | only in fixedbugs
      1 // errorcheck
      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 c00 uint8 = '\0';  // ERROR "oct|char"
     11 	var c01 uint8 = '\07';  // ERROR "oct|char"
     12 	var cx0 uint8 = '\x0';  // ERROR "hex|char"
     13 	var cx1 uint8 = '\x';  // ERROR "hex|char"
     14 	_, _, _, _ = c00, c01, cx0, cx1
     15 }
     16