]> Cypherpunks.ru repositories - gostls13.git/blob - test/fixedbugs/issue6298.go
6303dbe5b093559f8399ff4ba7825100cde914a3
[gostls13.git] / 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 }