[Test] Extract CLI tests for plugins into separate directory

This commit is contained in:
Dmitriy Novozhilov
2022-06-30 11:50:45 +03:00
committed by teamcity
parent 0d1e802db1
commit 8919703448
11 changed files with 33 additions and 19 deletions
+14
View File
@@ -0,0 +1,14 @@
package foo
annotation class AllOpen
@AllOpen
class Base {
fun method() {}
val property = "hello"
}
class Derived : Base() {
override fun method() {}
override val property = "world"
}