mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
|
// @target: esnext,es2016
|
||
|
// @noTypesAndSymbols: true
|
||
|
|
||
|
// https://github.com/microsoft/TypeScript/issues/34952#issuecomment-552025027
|
||
|
class C {
|
||
|
// ? should be removed in emit
|
||
|
method?() {}
|
||
|
}
|