Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This diagnostic occurs when a character, such as a bracket, is missing.
Expected the <character> character at this location.
Error
Add the missing character.
The following example raises the diagnostic because the code is missing a }.
output tennisBall object = {
type: 'tennis'
color: 'yellow'
You can fix the diagnostic by adding the missing }.
output tennisBall object = {
type: 'tennis'
color: 'yellow'
}
For more information, see Objects
The following example raises the diagnostic because the code is missing a ].
output colors array = [
'red'
'blue'
'white'
You can fix the diagnostic by adding the missing ].
output colors array = [
'red'
'blue'
'white'
]
For more information, see Arrays.
The following example raises the diagnostic because the code is missing =
and the assigned value.
output month int
You can fix the diagnostic by completing the output declaration.
output month int = 3
For more information, see Outputs.
For more information about Bicep diagnostics, see Bicep core diagnostics.