Bicep 诊断代码 – BCP062
当引用的声明出错时,会发生此诊断。
说明
名称为 <type-name> 的被引用声明无效。
Level
错误
示例
以下示例会引发此诊断,因为引用的用户定义的数据类型有错误:
type ball = object.bar
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
修复 ball 定义即可修复此诊断:
type ball = object
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
后续步骤
有关 Bicep 诊断的详细信息,请参阅 Bicep 核心诊断。