Fixed error message to quote parameter name

This commit is contained in:
Valentin Kipyatkov
2017-05-19 08:42:12 +03:00
parent 4cbdbaa057
commit 1fe6886a33
46 changed files with 59 additions and 59 deletions
@@ -1,6 +1,6 @@
// FILE: first.before.kt
// "Import" "true"
// ERROR: No value passed for parameter p
// ERROR: No value passed for parameter 'p'
// ERROR: Type mismatch: inferred type is Unit but String was expected
package main
@@ -23,7 +23,7 @@ fun <T> X.foo(): T = TODO()
// FILE: first.after.kt
// "Import" "true"
// ERROR: No value passed for parameter p
// ERROR: No value passed for parameter 'p'
// ERROR: Type mismatch: inferred type is Unit but String was expected
package main