Skip to content

Commit

Permalink
Fix wildcard test.
Browse files Browse the repository at this point in the history
  • Loading branch information
traceyyoshima committed Mar 15, 2023
1 parent 2a98e4b commit b4ecc11
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,14 @@ void wildcard() {
rewriteRun(
kotlin(
"""
import org.jetbrains.kotlin.gradle.plugin.KotlinCompilation
val a: KotlinCompilation < * > = null
package org.foo
class Test<T>
"""
),
kotlin(
"""
import org.foo.Test
val a : Test < * > = null
"""
)
);
Expand Down

0 comments on commit b4ecc11

Please sign in to comment.