9 lines
264 B
Plaintext
9 lines
264 B
Plaintext
// If you need a quick compiler test — this file is for your playground
|
|
contract interface Remote =
|
|
entrypoint init : int => void
|
|
entrypoint f : int => int
|
|
|
|
contract Test =
|
|
entrypoint kek(r : Remote) =
|
|
Chain.clone(ref=r, 123)
|
|
Chain.bytecode_hash(r) |