[IR] update testdata after using maxBlankLines=1 for Printer

This commit is contained in:
Zalim Bashorov
2020-11-06 02:47:33 +03:00
committed by teamcityserver
parent 6e318893f6
commit 602f0ddbc8
243 changed files with 0 additions and 1789 deletions
@@ -1,13 +1,8 @@
interface TestInterface<T : Any?> {
interface TestNestedInterface<TT : Any?> {
}
}
class Test<T0 : Any?> {
@@ -24,9 +19,6 @@ class Test<T0 : Any?> {
}
}
inner class TestInner<T2 : Any?> {
@@ -36,13 +28,7 @@ class Test<T0 : Any?> {
}
}
}
@@ -13,9 +13,6 @@ class Test1<T1 : Any?, T2 : Any?> {
field = y
get
}
class Test2 {
@@ -44,14 +41,8 @@ class Test2 {
<this>.this/*TestInner*/<Z>(z = z)
}
}
}
class Test3 {
@@ -69,9 +60,6 @@ class Test3 {
field = y
get
}
class Test4<T : Any?> {
@@ -89,8 +77,5 @@ class Test4<T : Any?> {
this/*Test4*/<T>(x = x.plus(other = y))
}
}
@@ -23,9 +23,6 @@ class Host {
get
set
}
class InPrimaryCtor<T : Any?> {
@@ -44,8 +41,5 @@ class InPrimaryCtor<T : Any?> {
get
set
}
@@ -5,8 +5,6 @@ interface IBase<T : Any?> {
abstract fun <X : Any?> qux(t: T, x: X)
}
class Test<TT : Any?> : IBase<TT> {
@@ -30,8 +28,5 @@ class Test<TT : Any?> : IBase<TT> {
return #$$delegate_0.<get-bar>()
}
}
@@ -23,8 +23,5 @@ class Host {
fun <T : Any?> String.testMembetExt2(i: Int, j: T) {
}
}
@@ -15,13 +15,7 @@ class Outer<T1 : Any?> {
fun foo(x1: T1, x2: T2) {
}
}
}
@@ -2,18 +2,14 @@ fun <TT : Any?> outer() {
local fun <T : Any?> test1(i: Int, j: T) {
}
local fun test2(i: Int = 0, j: String = "") {
}
local fun test3(vararg args: String) {
}
local fun String.textExt1(i: Int, j: TT) {
}
}
@@ -77,8 +77,5 @@ class Host<T : Any?> {
set(value: Int) {
}
}
@@ -5,9 +5,6 @@ class Test1<T : U, U : Any?> {
}
}
fun <T : U, U : Any?> test2() {
@@ -5,9 +5,6 @@ abstract class Base1<T : Derived1> {
}
}
class Derived1 : Base1<Derived1> {
@@ -17,9 +14,6 @@ class Derived1 : Base1<Derived1> {
}
}
abstract class Base2 {
@@ -32,9 +26,6 @@ abstract class Base2 {
fun <T : Derived2> foo(x: T) {
}
}
class Derived2 : Base2 {
@@ -44,9 +35,5 @@ class Derived2 : Base2 {
}
}