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 @@
// "Replace invalid positioned arguments for annotation" "true"
// WITH_RUNTIME
// ERROR: Only named arguments are available for Java annotations
// ERROR: No value passed for parameter arg2
// ERROR: No value passed for parameter 'arg2'
@Ann(1, arg1 = "abc") class A
@@ -1,6 +1,6 @@
// "Replace invalid positioned arguments for annotation" "true"
// WITH_RUNTIME
// ERROR: Only named arguments are available for Java annotations
// ERROR: No value passed for parameter arg2
// ERROR: No value passed for parameter 'arg2'
@Ann(1, "abc"<caret>) class A