Fix a bug where aliased constructors of nullable methodmaps could not be used.

This commit is contained in:
David Anderson
2014-11-30 18:56:37 -08:00
parent 9f5c8b60ae
commit 157549e119
4 changed files with 31 additions and 5 deletions
@@ -0,0 +1,12 @@
native Handle:CreateHandle();
methodmap Handle __nullable__
{
public native Handle() = CreateHandle;
public native ~Handle();
};
public main()
{
CreateHandle();
}