Escape special names with backticks in test data

#KT-51248
This commit is contained in:
Vladimir Dolzhenko
2022-02-01 22:29:34 +01:00
committed by Space
parent 4de9de5fc5
commit 918a91dbdf
279 changed files with 1689 additions and 1689 deletions
@@ -14,7 +14,7 @@ public interface HalfSubstitutedTypeParameters {
public interface TrickyList</*0*/ X, /*1*/ E> : kotlin.collections.MutableList<E> {
public abstract override /*1*/ /*fake_override*/ val size: kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun <get-size>(): kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun `<get-size>`(): kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ element: E): kotlin.Boolean
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ index: kotlin.Int, /*1*/ element: E): kotlin.Unit
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ index: kotlin.Int, /*1*/ elements: kotlin.collections.Collection<E>): kotlin.Boolean
@@ -14,7 +14,7 @@ public interface HalfSubstitutedTypeParameters {
public interface TrickyList</*0*/ X, /*1*/ E> : kotlin.collections.MutableList<E> {
public abstract override /*1*/ /*fake_override*/ val size: kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun <get-size>(): kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun `<get-size>`(): kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ element: E): kotlin.Boolean
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ index: kotlin.Int, /*1*/ element: E): kotlin.Unit
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ index: kotlin.Int, /*1*/ elements: kotlin.collections.Collection<E>): kotlin.Boolean
@@ -2,7 +2,7 @@ package test
public interface SubclassOfCollection</*0*/ E> : kotlin.collections.MutableCollection<E> {
public abstract override /*1*/ /*fake_override*/ val size: kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun <get-size>(): kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun `<get-size>`(): kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ element: E): kotlin.Boolean
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ elements: kotlin.collections.Collection<E>): kotlin.Boolean
public abstract override /*1*/ /*fake_override*/ fun clear(): kotlin.Unit
@@ -2,7 +2,7 @@ package test
public interface SubclassOfCollection</*0*/ E> : kotlin.collections.MutableCollection<E> {
public abstract override /*1*/ /*fake_override*/ val size: kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun <get-size>(): kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun `<get-size>`(): kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun add(/*0*/ element: E): kotlin.Boolean
public abstract override /*1*/ /*fake_override*/ fun addAll(/*0*/ elements: kotlin.collections.Collection<E>): kotlin.Boolean
public abstract override /*1*/ /*fake_override*/ fun clear(): kotlin.Unit
@@ -2,8 +2,8 @@ package test
public interface SubclassOfMapEntry</*0*/ K, /*1*/ V> : kotlin.collections.MutableMap.MutableEntry<K, V> {
public abstract override /*1*/ /*fake_override*/ val key: K
public abstract override /*1*/ /*fake_override*/ fun <get-key>(): K
public abstract override /*1*/ /*fake_override*/ fun `<get-key>`(): K
public abstract override /*1*/ val value: V
public abstract override /*1*/ fun <get-value>(): V
public abstract override /*1*/ fun `<get-value>`(): V
public abstract override /*1*/ fun setValue(/*0*/ value: V): V
}