File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ FILE: dataClassDeclaration.kt
2+ public final data class User : R|kotlin/Any| {
3+ public constructor(name: R|kotlin/String|, age: R|kotlin/Int|): R|User| {
4+ super<R|kotlin/Any|>()
5+ }
6+
7+ public final val name: R|kotlin/String| = R|<local>/name|
8+ public get(): R|kotlin/String|
9+
10+ public final val age: R|kotlin/Int| = R|<local>/age|
11+ public get(): R|kotlin/Int|
12+
13+ public final operator fun component1(): R|kotlin/String|
14+
15+ public final operator fun component2(): R|kotlin/Int|
16+
17+ public final fun copy(name: R|kotlin/String| = this@R|/User|.R|/User.name|, age: R|kotlin/Int| = this@R|/User|.R|/User.age|): R|User|
18+
19+ }
Original file line number Diff line number Diff line change 1+ // RUN_PIPELINE_TILL: BACKEND
2+ // FIR_DUMP
3+ data class User (val name : String , val age : Int )
4+
5+ /* GENERATED_FIR_TAGS: classDeclaration, data, primaryConstructor, propertyDeclaration */
You can’t perform that action at this time.
0 commit comments