mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
Codegen for callable reference expressions
#KT-1183 In Progress
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
class A {
|
||||
public A(double x, int y) { }
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
fun box(): String {
|
||||
(::A)(0.0, 0)
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user