TypeScript/tests/cases/compiler/assignmentToFunction.ts
2014-07-12 17:30:19 -07:00

10 lines
138 B
TypeScript

function fn() { }
fn = () => 3;
module foo {
function xyz() {
function bar() {
}
bar = null;
}
}