From c29f1af17e49ae01d865f443ea0ff2f92bf3a888 Mon Sep 17 00:00:00 2001
From: Jesse Ruderman <jruderman@gmail.com>
Date: Sat, 24 Sep 2011 16:11:50 -0700
Subject: [PATCH] Remove irrelevant parts of test

---
 src/test/compile-fail/constrained-type-missing-check.rs | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/test/compile-fail/constrained-type-missing-check.rs b/src/test/compile-fail/constrained-type-missing-check.rs
index 6eb5a7c1e62..e09586c295f 100644
--- a/src/test/compile-fail/constrained-type-missing-check.rs
+++ b/src/test/compile-fail/constrained-type-missing-check.rs
@@ -2,10 +2,6 @@
 // xfail-test
 // error-pattern:Unsatisfied precondition
 
-tag list { cons(int, @list); nil; }
-
-type bubu = {x: int, y: int};
-
 pure fn less_than(x: int, y: int) -> bool { ret x < y; }
 
 type ordered_range = {low: int, high: int} : less_than(low, high);