about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-04-08 01:19:38 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-04-08 01:19:38 +0530
commit2b34643638d627a371bd1073fc810f8d4acb170f (patch)
treea3327bf9f6901e9cd13f4958ac3c27357f45356a
parent6295406d9f97372b087cf4c8d3ad1b18c32257f9 (diff)
parent6f9ec0615c29a6c7b45bc0db675ce99d90d61eab (diff)
downloadrust-2b34643638d627a371bd1073fc810f8d4acb170f.tar.gz
rust-2b34643638d627a371bd1073fc810f8d4acb170f.zip
Rollup merge of #24147 - lstat:needstest-22560, r=alexcrichton
Closes #22560
-rw-r--r--src/test/compile-fail/issue-22560.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-22560.rs b/src/test/compile-fail/issue-22560.rs
new file mode 100644
index 00000000000..b458e10a89c
--- /dev/null
+++ b/src/test/compile-fail/issue-22560.rs
@@ -0,0 +1,20 @@
+// 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.
+
+// ignore-tidy-linelength
+
+use std::ops::{Add, Sub};
+
+type Test = Add +
+            //~^ ERROR the type parameter `RHS` must be explicitly specified in an object type because its default value `Self` references the type `Self`
+            Sub;
+            //~^ ERROR only the builtin traits can be used as closure or object bounds
+
+fn main() { }