solidity/test/libsolidity/syntaxTests/literals/hex_string_invalid_characters_yul.sol
2021-04-08 15:03:33 +02:00

10 lines
203 B
Solidity

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