aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/pin_project/invalid.stderr
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-10 07:23:36 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-10 07:23:36 +0000
commit97a921dcc1f96f69b5f555424f3215646436cd1c (patch)
tree7fcd35ff92b7d412fdee86b26ca803e64cf1df60 /tests/ui/pin_project/invalid.stderr
parent73d5d1b098e3449ff2b6bd7fce807217aba158d5 (diff)
parentc9920d7cdd482613fb6c77f8d4f6c08d0e4ace71 (diff)
downloadpin-project-lite-97a921dcc1f96f69b5f555424f3215646436cd1c.tar.gz
Change-Id: Ib9f1273f3e1446ccc9bdb7859e11efde21ad7a59
Diffstat (limited to 'tests/ui/pin_project/invalid.stderr')
-rw-r--r--tests/ui/pin_project/invalid.stderr32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/ui/pin_project/invalid.stderr b/tests/ui/pin_project/invalid.stderr
new file mode 100644
index 0000000..1e363d7
--- /dev/null
+++ b/tests/ui/pin_project/invalid.stderr
@@ -0,0 +1,32 @@
+error: no rules expected the token `struct`
+ --> tests/ui/pin_project/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 the macro `$crate::__pin_project_internal` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: no rules expected the token `struct`
+ --> tests/ui/pin_project/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 the macro `$crate::__pin_project_internal` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: cannot find attribute `pin` in this scope
+ --> tests/ui/pin_project/invalid.rs:11:7
+ |
+11 | #[pin] //~ ERROR cannot find attribute `pin` in this scope
+ | ^^^