leo/tests/compiler/stdlib/blake2s.leo
2021-09-10 05:55:07 -07:00

11 lines
223 B
Plaintext

// namespace: Compile
// expectation: Fail
// input_files:
// - input/dummy.in
import std.unstable.blake2s.BadCircuit; // `BadCircuit` is not included in the blake2s package
function main() -> bool {
return false;
}