Fix a bug where aliased constructors of nullable methodmaps could not be used.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
native Handle:CreateHandle();
|
||||
|
||||
methodmap Handle __nullable__
|
||||
{
|
||||
public native Handle() = CreateHandle;
|
||||
public native ~Handle();
|
||||
};
|
||||
|
||||
public main()
|
||||
{
|
||||
CreateHandle();
|
||||
}
|
||||
Reference in New Issue
Block a user