1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
=== tests/cases/compiler/implicitAnyFromCircularInference.ts ===
// Error expected
var a: typeof a;
>a : any
>a : any
// Error expected on b or c
var b: typeof c;
>b : any
>c : any
var c: typeof b;
>c : any
>b : any
// Error expected
var d: Array<typeof d>;
>d : any
>d : any
function f() { return f; }
>f : () => typeof f
>f : () => typeof f
// Error expected
function g() { return g(); }
>g : () => any
>g() : any
>g : () => any
// Error expected
var f1 = function () {
>f1 : () => any
>function () { return f1();} : () => any
return f1();
>f1() : any
>f1 : () => any
};
// Error expected
var f2 = () => f2();
>f2 : () => any
>() => f2() : () => any
>f2() : any
>f2 : () => any
// Error expected
function h() {
>h : () => any
return foo();
>foo() : any
>foo : () => any
function foo() {
>foo : () => any
return h() || "hello";
>h() || "hello" : any
>h() : any
>h : () => any
>"hello" : "hello"
}
}
interface A {
s: string;
>s : string
}
function foo(x: A): string { return "abc"; }
>foo : (x: A) => string
>x : A
>"abc" : "abc"
class C {
>C : C
// Error expected
s = foo(this);
>s : string
>foo(this) : string
>foo : (x: A) => string
>this : this
}
class D {
>D : D
// Error expected
get x() {
>x : any
return this.x;
>this.x : any
>this : this
>x : any
}
}
|