diff --git a/stdlib/numbers.bolt b/stdlib/numbers.bolt index 6fedb44ae..4c167ba6d 100644 --- a/stdlib/numbers.bolt +++ b/stdlib/numbers.bolt @@ -10,6 +10,9 @@ pub struct u32; pub struct u64; pub struct usize; +pub struct int; +pub struct uint; + trait Num; fn (a: N) + (b: N) -> N where N: Num {