Remove test for any type -> match type, which doesn't seem to exist anymore

This commit is contained in:
Dan Luu 2013-04-28 15:02:15 -04:00
parent 9968ccfc30
commit 212d77efcc

View file

@ -1,14 +0,0 @@
// xfail-test
fn altsimple(any x) {
match type (f) {
case (int i) { print("int"); }
case (str s) { print("str"); }
}
}
pub fn main() {
altsimple(5);
altsimple("asdfasdfsDF");
}