leo/tests/compiler/core/account/private_key.leo
2022-06-20 12:34:33 -07:00

10 lines
188 B
Plaintext

/*
namespace: Compile
expectation: Fail
*/
// todo: rewrite this test so it properly tests a private key.
function main(public private_key: PrivateKey, a: bool) -> bool {
return a;
}