]> git.lizzy.rs Git - rust.git/commitdiff
Convert issue-49376.rs to compile-pass
authorJonas Schievink <jonasschievink@gmail.com>
Thu, 4 Oct 2018 12:53:16 +0000 (14:53 +0200)
committerJonas Schievink <jonasschievink@gmail.com>
Thu, 4 Oct 2018 12:53:16 +0000 (14:53 +0200)
src/test/run-pass/impl-trait/issue-49376.rs [deleted file]
src/test/run-pass/impl-trait/issue-49376.stderr [deleted file]
src/test/ui/impl-trait/issue-49376.rs [new file with mode: 0644]

diff --git a/src/test/run-pass/impl-trait/issue-49376.rs b/src/test/run-pass/impl-trait/issue-49376.rs
deleted file mode 100644 (file)
index 10379da..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2018 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.
-
-// run-pass
-
-// Tests for nested self-reference which caused a stack overflow.
-
-use std::fmt::Debug;
-use std::ops::*;
-
-fn gen() -> impl PartialOrd + PartialEq + Debug { }
-
-struct Bar {}
-trait Foo<T = Self> {}
-impl Foo for Bar {}
-
-fn foo() -> impl Foo {
-    Bar {}
-}
-
-fn test_impl_ops() -> impl Add + Sub + Mul + Div { 1 }
-fn test_impl_assign_ops() -> impl AddAssign + SubAssign + MulAssign + DivAssign { 1 }
-
-fn main() {}
diff --git a/src/test/run-pass/impl-trait/issue-49376.stderr b/src/test/run-pass/impl-trait/issue-49376.stderr
deleted file mode 100644 (file)
index f5f3600..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-warning: function is never used: `gen`
-  --> $DIR/issue-49376.rs:18:1
-   |
-LL | fn gen() -> impl PartialOrd + PartialEq + Debug { }
-   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-   |
-   = note: #[warn(dead_code)] on by default
-
-warning: struct is never constructed: `Bar`
-  --> $DIR/issue-49376.rs:20:1
-   |
-LL | struct Bar {}
-   | ^^^^^^^^^^
-
-warning: function is never used: `foo`
-  --> $DIR/issue-49376.rs:24:1
-   |
-LL | fn foo() -> impl Foo {
-   | ^^^^^^^^^^^^^^^^^^^^
-
-warning: function is never used: `test_impl_ops`
-  --> $DIR/issue-49376.rs:28:1
-   |
-LL | fn test_impl_ops() -> impl Add + Sub + Mul + Div { 1 }
-   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-warning: function is never used: `test_impl_assign_ops`
-  --> $DIR/issue-49376.rs:29:1
-   |
-LL | fn test_impl_assign_ops() -> impl AddAssign + SubAssign + MulAssign + DivAssign { 1 }
-   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
diff --git a/src/test/ui/impl-trait/issue-49376.rs b/src/test/ui/impl-trait/issue-49376.rs
new file mode 100644 (file)
index 0000000..1dfea0b
--- /dev/null
@@ -0,0 +1,31 @@
+// Copyright 2018 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.
+
+// compile-pass
+
+// Tests for nested self-reference which caused a stack overflow.
+
+use std::fmt::Debug;
+use std::ops::*;
+
+fn gen() -> impl PartialOrd + PartialEq + Debug { }
+
+struct Bar {}
+trait Foo<T = Self> {}
+impl Foo for Bar {}
+
+fn foo() -> impl Foo {
+    Bar {}
+}
+
+fn test_impl_ops() -> impl Add + Sub + Mul + Div { 1 }
+fn test_impl_assign_ops() -> impl AddAssign + SubAssign + MulAssign + DivAssign { 1 }
+
+fn main() {}