blob: 32324742e87c37434680fcb26051d7c1ea023c37 [file] [log] [blame]
fun foo() {
myFor@
for (i in 1..10) {
myWhile@
while (x()) {
myDo@
do {
break@<caret>
} while (y())
}
}
}
// EXIST: { lookupString: "break@myDo", itemText: "break", tailText: "@myDo", attributes: "bold" }
// EXIST: { lookupString: "break@myWhile", itemText: "break", tailText: "@myWhile", attributes: "bold" }
// EXIST: { lookupString: "break@myFor", itemText: "break", tailText: "@myFor", attributes: "bold" }
// NOTHING_ELSE