TypeScript/tests/baselines/reference/commentBeforeStaticMethod1.types

14 lines
196 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/commentBeforeStaticMethod1.ts ===
class C {
>C : C
/**
* Returns bar
*/
public static foo(): string {
>foo : () => string
return "bar";
}
}