about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTamir Duberstein <tamird@gmail.com>2015-03-15 13:25:46 -0700
committerTamir Duberstein <tamird@gmail.com>2015-03-16 07:35:23 -0700
commita19bbca092783cd456036069ba475857fc3bc4bb (patch)
treeb5dc378621d5ad5c32474f930e78d81130363d27 /src
parent3a93bdb92c195cab90103743f11c14c837e84598 (diff)
downloadrust-a19bbca092783cd456036069ba475857fc3bc4bb.tar.gz
rust-a19bbca092783cd456036069ba475857fc3bc4bb.zip
Regression test for #20225
Closes #20225.
Diffstat (limited to 'src')
-rw-r--r--src/test/compile-fail/issue-20225.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-20225.rs b/src/test/compile-fail/issue-20225.rs
new file mode 100644
index 00000000000..e4bedbbb7e1
--- /dev/null
+++ b/src/test/compile-fail/issue-20225.rs
@@ -0,0 +1,22 @@
+// Copyright 2015 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.
+
+#![feature(unboxed_closures)]
+
+struct Foo;
+
+impl<'a, T> Fn<(&'a T,)> for Foo {
+  type Output = ();
+
+  extern "rust-call" fn call(&self, (_,): (T,)) {}
+  //~^ ERROR: has an incompatible type for trait: expected &-ptr
+}
+
+fn main() {}