package tests import ( "testing" ) //https://studygolang.com/interview/question func TestIfcondation(tt *testing.T) { if a := 1; false { } else if b := 2; false { } else { println(a, b) } }