Allow "stock static" in addition to "static stock".

This commit is contained in:
David Anderson
2015-01-04 12:04:51 -08:00
parent 3e012e7f79
commit 491036a1e6
3 changed files with 37 additions and 6 deletions
@@ -0,0 +1,5 @@
static stock const X = 5;
stock static const Y = 6;
public main()
{}
@@ -0,0 +1,7 @@
static stock const X = 5;
stock static const Y = 6;
public main()
{
return X + Y;
}