diff options
author | Linnea Gräf <nea@nea.moe> | 2025-04-09 14:30:07 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-04-09 14:30:07 +0200 |
commit | d0b62df0460daa444805a5177a4955f782196d0c (patch) | |
tree | bbe768eaff3428c9a04aaf71e54323c00b2d77c9 /kotlin-plugin/src/test/kotlin | |
parent | 5e0940a9691f373a6fda16b19e4d15724324829b (diff) | |
download | mcautotranslations-d0b62df0460daa444805a5177a4955f782196d0c.tar.gz mcautotranslations-d0b62df0460daa444805a5177a4955f782196d0c.tar.bz2 mcautotranslations-d0b62df0460daa444805a5177a4955f782196d0c.zip |
feat: Port to K2 / Kotlin 2.1.20 / KSP 2.0.0
Diffstat (limited to 'kotlin-plugin/src/test/kotlin')
-rw-r--r-- | kotlin-plugin/src/test/kotlin/moe/nea/mcautotranslations/TestTemplateReplacement.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kotlin-plugin/src/test/kotlin/moe/nea/mcautotranslations/TestTemplateReplacement.kt b/kotlin-plugin/src/test/kotlin/moe/nea/mcautotranslations/TestTemplateReplacement.kt index b4a7f18..a62ac30 100644 --- a/kotlin-plugin/src/test/kotlin/moe/nea/mcautotranslations/TestTemplateReplacement.kt +++ b/kotlin-plugin/src/test/kotlin/moe/nea/mcautotranslations/TestTemplateReplacement.kt @@ -10,7 +10,7 @@ class TestTemplateReplacement { @Test fun testX() { val dollar = '$' - compile(listOf( + val result = compile(listOf( SourceFile.kotlin( "test.kt", """ @@ -37,4 +37,4 @@ class TestTemplateReplacement { ) )) } -}
\ No newline at end of file +} |