mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +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?() {}
|
|
} |