solidity/test/libyul/yulSyntaxTests/objects/conflict_object_object.yul
2022-04-01 23:41:18 -05:00

13 lines
193 B
Plaintext

object "A" {
code {}
object "B" {
code {}
}
object "B" {
code {}
}
}
// ----
// ParserError 8794: (64-67='"B"'): Object name "B" already exists inside the containing object.