Minor: move reflection/light/* -> reflection/*

This commit is contained in:
Zalim Bashorov
2016-10-04 17:18:59 +03:00
parent d31f18137d
commit ace10f46b2
6 changed files with 19 additions and 28 deletions
+22
View File
@@ -0,0 +1,22 @@
package foo
open class A
class B : A() {
val a = 1
}
object O
interface I
enum class E {
X,
Y {
val a = 1
},
Z {}
}
@JsName("Q")
class R