TypeScript/tests/baselines/reference/localTypes4.js
Anders Hejlsberg 5eff0a5fae Adding tests
2015-05-26 12:03:13 -07:00

71 lines
1.3 KiB
TypeScript

//// [localTypes4.ts]
function f1() {
// Type parameters are in scope in parameters and return types
function f<T>(x: T): T {
return undefined;
}
}
function f2() {
// Local types are not in scope in parameters and return types
function f(x: T): T {
interface T { }
return undefined;
}
}
function f3() {
// Type parameters and top-level local types are in same declaration space
function f<T>() {
interface T { }
return undefined;
}
}
function f4() {
// Local types are block scoped
interface T { x: number }
let v: T;
v.x = 10;
if (true) {
interface T { x: string }
let v: T;
v.x = "hello";
}
else {
v.x = 20;
}
}
//// [localTypes4.js]
function f1() {
// Type parameters are in scope in parameters and return types
function f(x) {
return undefined;
}
}
function f2() {
// Local types are not in scope in parameters and return types
function f(x) {
return undefined;
}
}
function f3() {
// Type parameters and top-level local types are in same declaration space
function f() {
return undefined;
}
}
function f4() {
var v;
v.x = 10;
if (true) {
var v_1;
v_1.x = "hello";
}
else {
v.x = 20;
}
}