e6b5cb5216
Update includes:
- Changing syntax of `OI/`NI` tags from `<!NI;TAG!>` to `<!TAG{NI}!>`
- Fix some incorrect directives
- Change order of diagnostics in some places
- Remove ignored diagnostics from FIR test data (previously `DIAGNOSTICS` didn't work)
- Update FIR dumps in some places and add `FIR_IDENTICAL` if needed
- Replace all JAVAC_SKIP with SKIP_JAVAC directive
37 lines
1.5 KiB
Plaintext
Vendored
37 lines
1.5 KiB
Plaintext
Vendored
FILE: LinkedList.kt
|
|
public final class LinkedList<T> : R|java/util/LinkedList<T>| {
|
|
public constructor<T>(): R|foo/LinkedList<T>| {
|
|
super<R|java/util/LinkedList<T>|>()
|
|
}
|
|
|
|
}
|
|
FILE: HashSet.kt
|
|
public final class HashSet<T> : R|java/util/HashSet<T>| {
|
|
public constructor<T>(): R|util/HashSet<T>| {
|
|
super<R|java/util/HashSet<T>|>()
|
|
}
|
|
|
|
}
|
|
FILE: main.kt
|
|
public final class LinkedHashMap<K, V> : R|java/util/LinkedHashMap<K, V>| {
|
|
public constructor<K, V>(): R|foo/LinkedHashMap<K, V>| {
|
|
super<R|java/util/LinkedHashMap<K, V>|>()
|
|
}
|
|
|
|
}
|
|
public final fun test_1(): R|kotlin/Unit| {
|
|
lval map: R|util/HashMap<ft<kotlin/Int, kotlin/Int?>!, ft<kotlin/Int, kotlin/Int?>!>| = R|util/HashMap.HashMap|<R|ft<kotlin/Int, kotlin/Int?>!|, R|ft<kotlin/Int, kotlin/Int?>!|>()
|
|
}
|
|
public final fun test_2(): R|kotlin/Unit| {
|
|
lval set: R|util/HashSet<kotlin/Int>| = R|util/HashSet.HashSet|<R|kotlin/Int|>()
|
|
}
|
|
public final fun test_3(): R|kotlin/Unit| {
|
|
lval list: R|foo/ArrayList<ft<kotlin/Int, kotlin/Int?>!>| = R|foo/ArrayList.ArrayList|<R|ft<kotlin/Int, kotlin/Int?>!|>()
|
|
}
|
|
public final fun test_4(): R|kotlin/Unit| {
|
|
lval list: R|foo/LinkedList<kotlin/Int>| = R|foo/LinkedList.LinkedList|<R|kotlin/Int|>()
|
|
}
|
|
public final fun test_5(): R|kotlin/Unit| {
|
|
lval map: R|foo/LinkedHashMap<kotlin/Int, kotlin/Int>| = R|foo/LinkedHashMap.LinkedHashMap|<R|kotlin/Int|, R|kotlin/Int|>()
|
|
}
|