TypeScript/tests/baselines/reference/staticClassMemberError.errors.txt
2014-07-31 11:06:42 -07:00

19 lines
470 B
Plaintext

==== tests/cases/compiler/staticClassMemberError.ts (3 errors) ====
class C {
static s;
public a() {
s = 1;
~
!!! Cannot find name 's'.
}
}
// just want to make sure this one doesn't crash the compiler
function Foo();
~~~
!!! Function implementation is missing or not immediately following the declaration.
class Foo {
~~~
!!! Duplicate identifier 'Foo'.
static bar;
}