solidity/test/libsolidity/syntaxTests/literals/hex_string_invalid_characters_yul.sol

10 lines
203 B
Solidity
Raw Normal View History

2021-03-25 16:00:05 +00:00
contract C {
function f() public pure {
assembly {
let x := hex"abxy";
}
}
}
// ----
// ParserError 1465: (84-90): Illegal token: Expected even number of hex-nibbles.