diff --git a/test.bolt b/test.bolt deleted file mode 100644 index d9ed06c91..000000000 --- a/test.bolt +++ /dev/null @@ -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"); -