solidity/test/libyul/yulSyntaxTests/objects/datacopy.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

9 lines
167 B
Plaintext

{
datacopy(0, 1, 2)
// datacopy also accepts pretty much anything which can be turned into a number
let x := 0
let s := ""
datacopy(x, "11", s)
}