KT-8575 Fix warnings for Java synthetic properties

This commit is contained in:
Pavel Mikhailovskii
2022-10-10 22:35:10 +02:00
committed by teamcity
parent 26dc010d30
commit f4bdf54601
13 changed files with 37 additions and 59 deletions
@@ -1,3 +1,5 @@
// !LANGUAGE: -ReferencesToSyntheticJavaProperties
// FILE: Customer.java
public class Customer {
private String name;
@@ -1,3 +1,5 @@
// !LANGUAGE: -ReferencesToSyntheticJavaProperties
// FILE: Customer.java
public class Customer {
private String name;
@@ -16,4 +18,4 @@ public class Customer {
}
// FILE: test.kt
val customerName = Customer::<!UNSUPPORTED!>name<!>
val customerName = Customer::<!UNSUPPORTED_FEATURE!>name<!>