solidity/test/libyul/yulSyntaxTests/objects/data.yul
Alex Beregszaszi 291c359ee9 Add more syntax tests for Yul objects
Also move some of them from boost tests.
2020-08-05 21:01:46 +01:00

10 lines
195 B
Plaintext

object "A" {
code {
datacopy(0, dataoffset("3"), datasize("3"))
}
data "1" ""
data "2" hex"0011"
data "3" "hello world this is longer than 32 bytes and should still work"
}
// ----