Uast: wrapping expression bodies with return and code block (#KT-23557)
This commit is contained in:
committed by
xiexed
parent
66d134ef5c
commit
14ce13315c
+3
-1
@@ -1,5 +1,7 @@
|
||||
public abstract interface Foo {
|
||||
public default fun bar() : java.lang.String = "Hello!"
|
||||
public default fun bar() : java.lang.String {
|
||||
return "Hello!"
|
||||
}
|
||||
}
|
||||
|
||||
public final class Baz : Foo {
|
||||
|
||||
Reference in New Issue
Block a user