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

     1  _ = 4
     2  _ = "string"
     3  _ = interface{}(nil)
     4  _ = []byte{1}
     5  
     6  x, _ := 4, 5
     7  
     8  func f(_ string) {
     9  	_ = 4 // _ does not take the argument type
    10  	print("OK")
    11  }
    12  
    13  f("string")