Mark required call with 'caret' in abstract resolved calls test

This commit is contained in:
Svetlana Isakova
2014-06-05 14:36:31 +04:00
parent 29ab166e1b
commit 48511206ad
78 changed files with 109 additions and 258 deletions
@@ -1,5 +1,3 @@
// !CALL: foo
class A {
fun B.foo() {}
}
@@ -9,7 +7,7 @@ trait B
fun bar(a: A, b: B) {
with (a) {
with (b) {
foo()
<caret>foo()
}
}
}