leo/tests/compiler/import_local/local_imports/circuits.leo

18 lines
209 B
Plaintext

circuit Point {
x: u32
y: u32
}
function foo() -> u32 {
return 1u32;
}
type char5 = [char; 5];
const EIGHT = 8u8;
import nested.c-d.Fab;
function fab_gen() -> Fab {
return Fab { x: 3 };
}