github.com/neugram/ng@v0.0.0-20180309130942-d472ff93d872/eval/testdata/slice3_error.ng (about)

     1  var s1 []int
     2  if s1 != nil {
     3  	panic("ERROR 1")
     4  }
     5  
     6  var s2 []int
     7  if s2 != nil {
     8  	panic("ERROR 2")
     9  }
    10  
    11  s1 == s2 // ERROR: type []int only comparable to nil
    12  
    13  print("OK")