TypeScript/tests/cases/compiler/requiredInitializedParameter2.ts

7 lines
89 B
TypeScript
Raw Normal View History

2015-07-24 23:59:01 +02:00
interface I1 {
method();
}
class C1 implements I1 {
method(a = 0, b) { }
}