mirror of
https://github.com/swc-project/swc.git
synced 2024-12-28 08:04:43 +03:00
10 lines
143 B
TypeScript
10 lines
143 B
TypeScript
|
class C { foo: string; } // error
|
||
|
var C = ''; // error
|
||
|
|
||
|
module M {
|
||
|
class D { // error
|
||
|
bar: string;
|
||
|
}
|
||
|
|
||
|
var D = 1; // error
|
||
|
}
|