// FIR_IDENTICAL // FILE: Assert.java public class Assert { public static void assertThat(T actual, Matcher matcher) { } } // FILE: Matcher.java public class Matcher { public static Matcher> hasItem(T item) { return null; } } // FILE: main.kt fun test(x: List) { Assert.assertThat(x, Matcher.hasItem("abc")) }