Added simple live template test for iter live template.

This commit is contained in:
Evgeny Gerashchenko
2012-02-13 18:39:26 +04:00
parent 0a3c5dcbc1
commit 07ab67f289
2 changed files with 100 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import java.io.InputStream
import java.util.ArrayList
import java.io.FileInputStream
import java.util.HashSet
class MyClass {
public var collection : HashSet<Int>? = null
private var isAlive : Boolean = false
fun main(args : Array<String>, v : Int) {
var str = ""
val myList = ArrayList<String>()
val stream = FileInputStream(".")
<caret>
}
}