Bilješka
Pristup ovoj stranici zahtijeva provjeru vjerodostojnosti. Možete pokušati da se prijavite ili promijenite direktorije.
Pristup ovoj stranici zahtijeva provjeru vjerodostojnosti. Možete pokušati promijeniti direktorije.
This diagnostic occurs when the referenced declaration has an error.
Description
The referenced declaration with name <type-name> is not valid.
Level
Error
Examples
The following example raises the diagnostic because the referenced user-defined data type has an error:
type ball = object.bar
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
You can fix the diagnostic by fixing the ball definition:
type ball = object
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
Next steps
For more information about Bicep diagnostics, see Bicep core diagnostics.