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

22 lines
319 B
Plaintext

=== tests/cases/compiler/namedFunctionExpressionAssignedToClassProperty.ts ===
class Foo{
>Foo : Foo
a = function bar(){
>a : () => void
>function bar(){
} : () => void
>bar : () => void
}; // this shouldn't crash the compiler...
constructor(){
}
}