Moved test data to idea-live-templates too

This commit is contained in:
Valentin Kipyatkov
2015-11-19 13:46:09 +01:00
parent b8dadeb4cc
commit f44bbfe4cd
60 changed files with 346 additions and 339 deletions
+14
View File
@@ -0,0 +1,14 @@
val a: String = ""
val b: String? = ""
class MyClass {
val x: String = ""
val y: String? = ""
fun foo() {
val s: String = ""
val t: String? = ""
<caret>
}
}