Files
kotlin-fork/compiler/fir/psi2fir/testData/rawBuilder/declarations/where.txt
T
Simon Ogorodnik 9ebefa3ba6 FIR: make FunctionType class-like, refactor built-ins resolution
This breaks total kotlin resolve test because of incorrect rendering
of ConeClassErrorType (we are trying to read its symbol)
2019-02-19 09:54:28 +03:00

10 lines
191 B
Plaintext
Vendored

FILE: where.kt
public? final? interface A {
}
public? final? interface B {
}
<T : A, B> public? final? class C {
public? constructor(): super<kotlin/Any>()
}