Files
kotlin-fork/idea/testData/refactoring/extractFunction/parameters/extractThis/javaSyntheticProperty.kt.after
T
Denis Zharkov 4850fd10f0 Regenerate test data containing rendered descriptors
Introduced '@' after each annotation
2015-09-18 10:14:39 +03:00

8 lines
239 B
Plaintext
Vendored

// WITH_RUNTIME
// PARAM_DESCRIPTOR: private final fun Named.foo(): [@org.jetbrains.annotations.NotNull] String defined in Test
// PARAM_TYPES: Named
public class Test {
private fun Named.foo() = s()
private fun Named.s() = name
}