Files
kotlin-fork/idea/testData/checker/infos/Typos.kt
T
Nikolay Krasko 1675e45aee Enable basic spell check for Kotlin
#KT-4272 Fixed
2013-12-02 20:28:38 +04:00

11 lines
387 B
Kotlin
Vendored

package kara.internal
/* Test <TYPO descr="Typo: In word 'somthing'">somthing</TYPO> */
class <TYPO descr="Typo: In word 'Moree'">Moree</TYPO>Fun {
fun <TYPO descr="Typo: In word 'wrte'">wrte</TYPO>() {
val <TYPO descr="Typo: In word 'childen'">childen</TYPO> = 12
val <warning descr="[UNUSED_VARIABLE] Variable 'come' is never used">come</warning> = childen
wrte()
}
}