summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-32995.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/issues/issue-32995.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/issues/issue-32995.stderr')
-rw-r--r--src/test/ui/issues/issue-32995.stderr45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/test/ui/issues/issue-32995.stderr b/src/test/ui/issues/issue-32995.stderr
deleted file mode 100644
index b868011b9..000000000
--- a/src/test/ui/issues/issue-32995.stderr
+++ /dev/null
@@ -1,45 +0,0 @@
-error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
- --> $DIR/issue-32995.rs:2:12
- |
-LL | let x: usize() = 1;
- | ^^^^^^^ only `Fn` traits may use parentheses
-
-error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
- --> $DIR/issue-32995.rs:5:19
- |
-LL | let b: ::std::boxed()::Box<_> = Box::new(1);
- | ^^^^^^^ only `Fn` traits may use parentheses
-
-error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
- --> $DIR/issue-32995.rs:8:20
- |
-LL | let p = ::std::str::()::from_utf8(b"foo").unwrap();
- | ^^^^^^^ only `Fn` traits may use parentheses
-
-error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
- --> $DIR/issue-32995.rs:11:25
- |
-LL | let p = ::std::str::from_utf8::()(b"foo").unwrap();
- | ^^^^^^^^^^^^^ only `Fn` traits may use parentheses
-
-error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
- --> $DIR/issue-32995.rs:14:29
- |
-LL | let o : Box<dyn (::std::marker()::Send)> = Box::new(1);
- | ^^^^^^^^ only `Fn` traits may use parentheses
-
-error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
- --> $DIR/issue-32995.rs:17:35
- |
-LL | let o : Box<dyn Send + ::std::marker()::Sync> = Box::new(1);
- | ^^^^^^^^ only `Fn` traits may use parentheses
-
-error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
- --> $DIR/issue-32995.rs:22:13
- |
-LL | let d : X() = Default::default();
- | ^^^ only `Fn` traits may use parentheses
-
-error: aborting due to 7 previous errors
-
-For more information about this error, try `rustc --explain E0214`.