Open AZHenley opened 5 years ago
class foo { var num : int = 0; func test1() int { return num; // C error! num is not in scope. } func test2() int { return self.num; // OK! } }```