TypeScript/tests/baselines/reference/commentBeforeStaticMethod1.types
2014-08-15 14:37:48 -07:00

14 lines
196 B
Plaintext

=== tests/cases/compiler/commentBeforeStaticMethod1.ts ===
class C {
>C : C
/**
* Returns bar
*/
public static foo(): string {
>foo : () => string
return "bar";
}
}