]> git.proxmox.com Git - rustc.git/blobdiff - vendor/pin-project-lite/tests/ui/invalid.stderr
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / vendor / pin-project-lite / tests / ui / invalid.stderr
diff --git a/vendor/pin-project-lite/tests/ui/invalid.stderr b/vendor/pin-project-lite/tests/ui/invalid.stderr
deleted file mode 100644 (file)
index 06f2d79..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-error: no rules expected the token `[`
- --> $DIR/invalid.rs:3:1
-  |
-3 | / pin_project! {
-4 | |     struct A<T> {
-5 | |         #[pin()] //~ ERROR no rules expected the token `(`
-6 | |         pinned: T,
-7 | |     }
-8 | | }
-  | |_^ no rules expected this token in macro call
-  |
-  = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
-
-error: no rules expected the token `[`
-  --> $DIR/invalid.rs:17:1
-   |
-17 | / pin_project! {
-18 | |     struct C<T> {
-19 | |         #[pin]
-20 | |         #[pin] //~ ERROR no rules expected the token `#`
-21 | |         pinned: T,
-22 | |     }
-23 | | }
-   | |_^ no rules expected this token in macro call
-   |
-   = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
-
-error: cannot find attribute `pin` in this scope
-  --> $DIR/invalid.rs:11:7
-   |
-11 |     #[pin] //~ ERROR cannot find attribute `pin` in this scope
-   |       ^^^