class testClass: [Simple]
public thingy = "Hello, World!"
class SimpleAttribute(System.Attribute):
pass
Compiler ICEs with a null referenec.
Put SimpleAttribute above testClass and everything works.
Description
class testClass:
[Simple]
public thingy = "Hello, World!"
class SimpleAttribute(System.Attribute):
pass
Compiler ICEs with a null referenec.
Put SimpleAttribute above testClass and everything works.