solidity/test/libyul/yulSyntaxTests/objects/datacopy.yul

9 lines
167 B
Plaintext
Raw Normal View History

{
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)
}