mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
// @strict: true
|
|
declare function g(a: void): void;
|
|
let gg: () => void = g;
|
|
|
|
interface Obj<T> {
|
|
method(value: T): void;
|
|
}
|
|
|
|
declare const o: Obj<void>;
|
|
gg = o.method;
|