diff --git a/compiler/testData/checkerWithErrorTypes/quick/IncorrectCharacterLiterals.jet b/compiler/testData/checkerWithErrorTypes/quick/IncorrectCharacterLiterals.jet new file mode 100644 index 00000000000..e115b7ca23c --- /dev/null +++ b/compiler/testData/checkerWithErrorTypes/quick/IncorrectCharacterLiterals.jet @@ -0,0 +1,6 @@ +// http://youtrack.jetbrains.net/issue/KT-451 + +fun ff() { + val b = '' + val c = '23' +}