Added tests.

This commit is contained in:
Daniel Rosenwasser 2016-01-14 16:28:07 -08:00
parent 403a93d21f
commit 32454d0a84
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,7 @@
class C {
static foo: string;
bar() {
let k = foo;
}
}

View file

@ -0,0 +1,7 @@
class C {
foo: string;
static bar() {
let k = foo;
}
}