Fix a crash when properties have setters but not getters.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
methodmap Crab
|
||||
{
|
||||
property int X {
|
||||
public native set(int value);
|
||||
}
|
||||
}
|
||||
|
||||
public main()
|
||||
{
|
||||
Crab crab;
|
||||
crab.X = 12;
|
||||
}
|
||||
Reference in New Issue
Block a user