blob: 6547360e60e9ac4e52e8cda4c2b50c0407d5e517 [file] [log] [blame]
Peter Collingbournead9841e2014-11-27 00:06:42 +00001// RUN: llgo -o %t %s
2// RUN: %t 2>&1 | FileCheck %s
3
4// CHECK: true
5// CHECK-NEXT: false
6
7package main
8
9func main() {
10 var x interface{} = 123
11 println(x == 123)
12 println(x != 123)
13}