Fix "static stock" not working (bug 6174).

This commit is contained in:
David Anderson
2014-07-10 23:18:07 -07:00
parent c47cfa6fa8
commit 919e859a6d
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,13 @@
static stock Blah()
{
}
static stock void Blah2()
{
}
public main()
{
Blah();
Blah2();
}