FIR IDE: render unresolved types as qualifiers for member generator

This commit is contained in:
Ilya Kirillov
2021-06-12 16:52:55 +02:00
committed by TeamCityServer
parent cf7870e376
commit 39e2df6916
8 changed files with 36 additions and 16 deletions
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
// DISABLE-ERRORS
interface A<in TPipeline, out TBuilder : Any, TFeature : Any> {
fun install(pipeline: TPipeline, configure: TBuilder.() -> Unit): TFeature
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
// DISABLE-ERRORS
interface A<in TPipeline, out TBuilder : Any, TFeature : Any> {
fun install(pipeline: TPipeline, configure: TBuilder.() -> Unit): TFeature
@@ -1,10 +0,0 @@
// DISABLE-ERRORS
interface A<in TPipeline, out TBuilder : Any, TFeature : Any> {
fun install(pipeline: TPipeline, configure: TBuilder.() -> Unit): TFeature
}
class X : A<String, UnresolvedType, Unit> {
override fun install(pipeline: String, configure: ERROR_TYPE.() -> Unit) {
<selection><caret>TODO("Not yet implemented")</selection>
}
}