Introduce Property: Add tests for default values

This commit is contained in:
Alexey Sedunov
2015-03-05 15:40:04 +03:00
parent 1202e624ce
commit cab301e8e2
5 changed files with 36 additions and 0 deletions
@@ -0,0 +1,6 @@
// EXTRACTION_TARGET: property with initializer
class A {
fun foo(a: Int = <selection>1 + 2</selection>) {
}
}