Test directory renamed to 'diagnostics' which reflects its contents

This commit is contained in:
Andrey Breslav
2011-12-01 14:39:14 +03:00
parent 8cee193f47
commit 8e8d74e199
212 changed files with 0 additions and 0 deletions
@@ -0,0 +1,16 @@
trait B {
fun bar() {}
}
class C() {
fun bar() {
}
}
fun test(a : Any?) {
if (a is B) {
if (a is C) {
a.<!OVERLOAD_RESOLUTION_AMBIGUITY!>bar()<!>;
}
}
}