Source file test/fixedbugs/issue6298.go
1 // compile 2 3 // golang.org/issue/6298. 4 // Used to cause "internal error: typename ideal bool" 5 6 // Copyright 2013 The Go Authors. All rights reserved. 7 // Use of this source code is governed by a BSD-style 8 // license that can be found in the LICENSE file. 9 10 package main 11 12 func main() { 13 var x interface{} = "abc"[0] == 'a' 14 _ = x 15 } 16