FIR: add test repeating a problem with annotation mapping (KT-48298)

This commit is contained in:
Mikhail Glukhikh
2021-08-17 11:00:35 +03:00
committed by TeamCityServer
parent ab158a53c3
commit 6660c9b26b
7 changed files with 145 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
// Library part (build by FE 1.0)
//package lib
//
//@Target(AnnotationTarget.PROPERTY, AnnotationTarget.FIELD)
//annotation class Property(
// val description: String = "",
// val ignore: Boolean = false,
//
// val externalName: String = ""
//)
//
//open class LocatableRunConfigurationOptions {
// @Property(ignore = true)
// val isNameGenerated by lazy { false }
//}
// Main part
package use
import lib.LocatableRunConfigurationOptions
class JvmMainMethodRunConfigurationOptions : LocatableRunConfigurationOptions()