blob: b2cc849ae20d60f8b2dc212765fa4e2b409d994d [file] [log] [blame]
// SHOULD_FAIL_WITH: Class 'Test' already contains function f1(Int)
class Test {
fun f1(n: Int){}
companion object{
fun <caret>f1(n: Int){}
}
}