Added tests

This commit is contained in:
Valentin Kipyatkov
2014-11-18 21:59:32 +03:00
parent 376e12b6f3
commit 18b9e4a868
4 changed files with 20 additions and 4 deletions
@@ -0,0 +1,11 @@
fun String.extFunForString(): Int = 0
fun Any.extFunForAny(): Int = 0
class C {
fun foo(): Int {
return "".<caret>
}
}
// EXIST: { itemText: "extFunForString", attributes: "bold" }
// EXIST: { itemText: "extFunForAny", attributes: "" }