This is the test case for #876. Xfailed for now.
This commit is contained in:
Tim Chevalier 2011-09-01 12:27:49 -07:00
parent 387903e702
commit 4951bb8bfc

View File

@ -0,0 +1,10 @@
// -*- rust -*-
// xfail-test
// error-pattern:mismatch
use std;
import std::vec::*;
fn main() {
let y;
let x : char = last(y);
}