blob: e8b6882001d7ab80684fa84bc444d2965e7d9156 [file] [log] [blame]
interface I {
def foo(int x<error descr="Default initializers are not allowed in abstract methods"> = 5</error>)
}
abstract class A {
abstract foo(int x<error descr="Default initializers are not allowed in abstract methods"> = 5</error>)
def abr(int x = 5){}
}