Auto generate reference tests

This commit is contained in:
Nikolay Krasko
2013-07-11 16:14:45 +04:00
parent cb19450d8d
commit 2621df3243
10 changed files with 86 additions and 34 deletions
@@ -0,0 +1,19 @@
trait A {
fun foo()
}
trait B {
fun foo()
}
trait C : A, B {
}
fun test(c: C) {
c.<caret>foo()
}
// MULTIRESOLVE
// REF: (in A).foo()
// REF: (in B).foo()