Remove compile-fail test from run-pass

This commit is contained in:
Tim Chevalier 2012-12-06 21:48:18 -08:00
parent dd80f7e06e
commit 31a4f40329

View File

@ -1,11 +0,0 @@
struct thing<Q> {
x: &Q
}
fn thing<Q>(x: &Q) -> thing<Q> {
thing{ x: x }
}
fn main() {
thing(&());
}