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

12 lines
320 B
Plaintext

{
pop(linkersymbol(0))
pop(linkersymbol(true))
pop(linkersymbol(false))
}
// ====
// dialect: evm
// ----
// TypeError 5859: (23-24='0'): Function expects string literal.
// TypeError 5859: (48-52='true'): Function expects string literal.
// TypeError 5859: (76-81='false'): Function expects string literal.