blob: 9caffd9bb2245d98ce5ebd474c76c7d9141485b4 [file] [log] [blame]
// WITH_DEFAULT_VALUE: false
fun foo(a: Int, s: String): Int {
val t = (a + 1) * 2
return <selection>1 + 2</selection> - t
}
fun test() {
foo(1, "2")
}