Fix fix for duplication attribute name errors

This commit is contained in:
Jason Turner 2012-01-30 09:16:20 -07:00
parent ee4c9575ae
commit 179a674b00

View File

@ -4,6 +4,6 @@ def bob::bob() { this.z = 10 }
attr bob2::z
def bob2::bob2() { this.z = 12 }
var b = bob();
var b2 = bob2();
auto b = bob();
auto b2 = bob2();