3d8d92c7d3
- test data files renamed from *.jet to *.kt
22 lines
1018 B
Kotlin
22 lines
1018 B
Kotlin
fun demo() {
|
|
val abc = 1
|
|
val a = ""
|
|
val asd = 1
|
|
val bar = 5
|
|
fun map(<!UNUSED_PARAMETER!>f<!> : () -> Any?) : Int = 1
|
|
fun buzz(<!UNUSED_PARAMETER!>f<!> : () -> Any?) : Int = 1
|
|
val sdf = 1
|
|
val foo = 3;
|
|
<!UNUSED_EXPRESSION!>"$abc"<!>
|
|
<!UNUSED_EXPRESSION!>"$"<!>
|
|
<!UNUSED_EXPRESSION!>"$.$.asdf$\t"<!>
|
|
<!UNUSED_EXPRESSION!>"asd\$"<!>
|
|
<!UNUSED_EXPRESSION!>"asd$a<!ILLEGAL_ESCAPE_SEQUENCE!>\x<!>"<!>
|
|
<!UNUSED_EXPRESSION!>"asd$a$asd$ $<!UNRESOLVED_REFERENCE!>xxx<!>"<!>
|
|
<!UNUSED_EXPRESSION!>"fosdfasdo${1 + bar + 100}}sdsdfgdsfsdf"<!>
|
|
<!UNUSED_EXPRESSION!>"foo${bar + map {foo}}sdfsdf"<!>
|
|
<!UNUSED_EXPRESSION!>"foo${bar + map { "foo" }}sdfsdf"<!>
|
|
<!UNUSED_EXPRESSION!>"foo${bar + map {
|
|
"foo$sdf${ buzz{}}" }}sdfsdf"<!>
|
|
<!UNUSED_EXPRESSION!>"a<!ILLEGAL_ESCAPE_SEQUENCE!>\u<!> <!ILLEGAL_ESCAPE_SEQUENCE!>\u<!>0 <!ILLEGAL_ESCAPE_SEQUENCE!>\u<!>00 <!ILLEGAL_ESCAPE_SEQUENCE!>\u<!>000 \u0000 \u0AaA <!ILLEGAL_ESCAPE_SEQUENCE!>\u<!>0AAz.length( ) + \u0022b"<!>
|
|
} |