[IR] update testdata: IrInstanceInitializerCall

This commit is contained in:
Zalim Bashorov
2020-11-06 03:40:37 +03:00
committed by teamcityserver
parent 26dd009713
commit e56787c0b0
208 changed files with 421 additions and 421 deletions
+4 -4
View File
@@ -1,14 +1,14 @@
sealed class Expr {
private constructor() /* primary */ {
super/*Any*/()
/* InstanceInitializerCall */
/* <init>() */
}
class Const : Expr {
constructor(number: Double) /* primary */ {
super/*Expr*/()
/* InstanceInitializerCall */
/* <init>() */
}
@@ -21,7 +21,7 @@ sealed class Expr {
class Sum : Expr {
constructor(e1: Expr, e2: Expr) /* primary */ {
super/*Expr*/()
/* InstanceInitializerCall */
/* <init>() */
}
@@ -38,7 +38,7 @@ sealed class Expr {
object NotANumber : Expr {
private constructor() /* primary */ {
super/*Expr*/()
/* InstanceInitializerCall */
/* <init>() */
}