testData/* moved to testData/ast/

This commit is contained in:
Sergey Ignatov
2011-11-07 12:21:49 +04:00
parent 433405c4e1
commit d0b352714f
427 changed files with 1 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
class A {void a() {}} final class B extends A {void a() {}}
+1
View File
@@ -0,0 +1 @@
namespace { open class A { fun a() : Unit { } } class B : A { override fun a() : Unit { } } }
@@ -0,0 +1 @@
T getT() {}
@@ -0,0 +1 @@
fun getT() : T? { }
@@ -0,0 +1 @@
void main() {}
@@ -0,0 +1 @@
fun main() : Unit { }
@@ -0,0 +1 @@
void test() {}
+1
View File
@@ -0,0 +1 @@
fun test() : Unit { }
@@ -0,0 +1 @@
String main() {}
@@ -0,0 +1 @@
fun main() : String? { }
@@ -0,0 +1 @@
int main() {}
@@ -0,0 +1 @@
fun main() : Int { }
@@ -0,0 +1 @@
boolean main() {}
@@ -0,0 +1 @@
fun main() : Boolean { }
@@ -0,0 +1 @@
boolean isTrue() { return true; }
@@ -0,0 +1 @@
fun isTrue() : Boolean { return true }
@@ -0,0 +1 @@
<U> void putU(U u) {}
@@ -0,0 +1 @@
fun putU<U>(u : U?) : Unit { }
@@ -0,0 +1 @@
<U, V, W> void putUVW(U u, V v, W w) {}
@@ -0,0 +1 @@
fun putUVW<U, V, W>(u : U?, v : V?, w : W?) : Unit { }
+1
View File
@@ -0,0 +1 @@
private void test() {}
+1
View File
@@ -0,0 +1 @@
private fun test() : Unit { }
@@ -0,0 +1 @@
protected void test() {}
@@ -0,0 +1 @@
protected fun test() : Unit { }
+1
View File
@@ -0,0 +1 @@
public void test() {}
+1
View File
@@ -0,0 +1 @@
public fun test() : Unit { }