solidity/test/libsolidity/semanticTests/getters/string_and_bytes.sol

20 lines
459 B
Solidity
Raw Normal View History

2020-11-24 22:32:32 +00:00
contract C {
string public a;
string public b;
bytes public c;
string public d = "abcd";
2020-11-24 22:32:32 +00:00
constructor() {
a = "hello world";
b = hex"41424344";
c = hex"ff077fff";
}
}
// ====
// compileViaYul: also
2021-04-23 15:59:01 +00:00
// compileToEwasm: also
2020-11-24 22:32:32 +00:00
// ----
// a() -> 0x20, 11, "hello world"
// b() -> 0x20, 4, "ABCD"
// c() -> 0x20, 4, -439061522557375173052089223601630338202760422010735733633791622124826263552
// d() -> 0x20, 4, "abcd"