leo/tests/compiler/core/account/compute_key.leo

10 lines
126 B
Plaintext
Raw Normal View History

/*
namespace: Compile
expectation: Pass
*/
function main(public compute_key: ComputeKey, a: bool) -> bool {
return a;
}