mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
41 lines
515 B
TypeScript
41 lines
515 B
TypeScript
// @declaration: true
|
|
|
|
type T1 = {
|
|
x: T1["x"]; // Error
|
|
};
|
|
|
|
type T2<K extends "x" | "y"> = {
|
|
x: T2<K>[K]; // Error
|
|
y: number;
|
|
}
|
|
|
|
declare let x2: T2<"x">;
|
|
let x2x = x2.x;
|
|
|
|
interface T3<T extends T3<T>> {
|
|
x: T["x"];
|
|
}
|
|
|
|
interface T4<T extends T4<T>> {
|
|
x: T4<T>["x"]; // Error
|
|
}
|
|
|
|
class C1 {
|
|
x: C1["x"]; // Error
|
|
}
|
|
|
|
class C2 {
|
|
x: this["y"];
|
|
y: this["z"];
|
|
z: this["x"];
|
|
}
|
|
|
|
// Repro from #12627
|
|
|
|
interface Foo {
|
|
hello: boolean;
|
|
}
|
|
|
|
function foo<T extends Foo | T["hello"]>() {
|
|
}
|