[FIR] add more tests diagnostic tests on data and delegated classes
^KT-63522 ^KT-63512 ^KT-63042
This commit is contained in:
committed by
Space Team
parent
fab63e38aa
commit
b3b184f00d
+16
@@ -0,0 +1,16 @@
|
||||
// FIR_IDENTICAL
|
||||
// FIR_DUMP
|
||||
package second
|
||||
|
||||
@Target(AnnotationTarget.TYPE)
|
||||
annotation class Anno(val int: Int)
|
||||
|
||||
interface Base
|
||||
fun bar(): Base = object : Base {}
|
||||
|
||||
const val constant = 0
|
||||
|
||||
class MyClass: @Anno(constant) Base by bar() {
|
||||
@Target(AnnotationTarget.TYPE)
|
||||
annotation class Anno(val string: String)
|
||||
}
|
||||
Reference in New Issue
Block a user