Remove garbage 'test.bolt' from repository

This commit is contained in:
Sam Vervaeck 2020-06-09 10:38:03 +02:00
parent faaf6327ad
commit f90418015d

View file

@ -1,20 +0,0 @@
struct int;
impl int {
fn fac(self) -> int {
return match n {
0 => 1,
_ => n * fac(n-1),
}
}
}
// This is wrong
fac();
// This is also wrong
fac("FOO");