solidity/test/libsolidity/syntaxTests/string/invalid_utf8_explicit_string.sol
2020-07-13 20:43:30 +01:00

6 lines
213 B
Solidity

contract C {
string s = string("\xa0\x00");
}
// ----
// TypeError 9640: (28-46): Explicit type conversion not allowed from "literal_string (contains invalid UTF-8 sequence at position 0)" to "string memory".