mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
It was supposed to be used in reflection but the benefits do not outweigh the cost of KT-6951 #KT-3223 Fixed #KT-6951 Fixed
12 lines
277 B
Java
Vendored
12 lines
277 B
Java
Vendored
public final class Synthetic {
|
|
private final void foo() { /* compiled code */ }
|
|
|
|
public Synthetic() { /* compiled code */ }
|
|
|
|
public final class Inner {
|
|
public final void test() { /* compiled code */ }
|
|
|
|
public Inner() { /* compiled code */ }
|
|
}
|
|
}
|