Mark usage correctly when invoking special natives.

This commit is contained in:
David Anderson
2014-07-17 22:30:13 -07:00
parent 7948755b3b
commit b0e98b16ec
3 changed files with 22 additions and 3 deletions
@@ -0,0 +1,12 @@
methodmap Handle {
public native ~Handle();
}
stock Crab(Handle h)
{
delete h;
}
public main()
{
}