Minor. Renamed test data to avoid repetitions.

This commit is contained in:
Evgeny Gerashchenko
2014-07-08 12:28:22 +04:00
parent 55ed0471b6
commit 0a3d852336
19 changed files with 41 additions and 41 deletions
@@ -0,0 +1,9 @@
// IS_APPLICABLE: false
fun doSomething<T>(a: T) {}
fun foo() {
while (true) {
doSomething("test")
doSomething("test2")
<caret>}
}