blob: 1572f4150581ecf131d5177722ad861a186ce9d7 [file] [log] [blame]
interface Foo {
def foo (String str, int number)
}
class A implements Foo {
def foo (String s) {}
}
-----