leo/tests/compiler/core/account/private_key.leo

9 lines
125 B
Plaintext
Raw Normal View History

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