TypeScript/tests/cases/compiler/requiredInitializedParameter3.ts

8 lines
112 B
TypeScript
Raw Normal View History

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