about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2013-01-19 17:39:15 -0800
committerTim Chevalier <chevalier@alum.wellesley.edu>2013-01-19 17:39:15 -0800
commitef0f71dc3fc8b203975c3da5230bed77becd0ee0 (patch)
tree92661f8972c453948c93ec1792ec426524b9106d /src
parent1e1707ccb867f1849d71fa64e6f984b60f3e350b (diff)
downloadrust-ef0f71dc3fc8b203975c3da5230bed77becd0ee0.tar.gz
rust-ef0f71dc3fc8b203975c3da5230bed77becd0ee0.zip
testsuite: Add xfailed test for #4335
Diffstat (limited to 'src')
-rw-r--r--src/test/compile-fail/issue-4335.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-4335.rs b/src/test/compile-fail/issue-4335.rs
new file mode 100644
index 00000000000..3aaac650c2b
--- /dev/null
+++ b/src/test/compile-fail/issue-4335.rs
@@ -0,0 +1,19 @@
+// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// xfail-test
+fn id<T>(t: T) -> T { t }
+
+fn f<T>(v: &r/T) -> &r/fn()->T { id::<&r/fn()->T>(|| *v) } //~ ERROR ???
+
+fn main() {
+    let v = &5;
+    io::println(fmt!("%d", f(v)()));
+}
\ No newline at end of file