mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
24 lines
357 B
TypeScript
24 lines
357 B
TypeScript
abstract class A {
|
|
abstract foo();
|
|
abstract foo() : number;
|
|
abstract foo();
|
|
|
|
abstract bar();
|
|
bar();
|
|
abstract bar();
|
|
|
|
abstract baz();
|
|
baz();
|
|
abstract baz();
|
|
baz() {}
|
|
|
|
qux();
|
|
}
|
|
|
|
abstract class B {
|
|
abstract foo() : number;
|
|
abstract foo();
|
|
x : number;
|
|
abstract foo();
|
|
abstract foo();
|
|
} |