TypeScript/tests/cases/compiler/assignmentToFunction.ts

10 lines
138 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
function fn() { }
fn = () => 3;
module foo {
function xyz() {
function bar() {
}
bar = null;
}
}