7 lines
137 B
Plaintext
7 lines
137 B
Plaintext
contract Remote =
|
|
entrypoint id : int => int
|
|
|
|
contract ProtectedCall =
|
|
entrypoint bad(r : Remote) =
|
|
r.id(protected = 0 == 1, 18)
|