Fix null not working with comparisons.

This commit is contained in:
David Anderson
2014-07-17 21:18:49 -07:00
parent 84344c1592
commit 805b66e539
4 changed files with 38 additions and 9 deletions
@@ -0,0 +1,19 @@
enum Handle:
{
}
methodmap Handle __nullable__
{
}
methodmap StringMap < Handle
{
}
native Log(const char[] fmt, any:...)
public main()
{
StringMap f
Log("hello %d", f != null)
}