aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/ok/0045_block_attrs.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-04-19 15:11:49 +0100
committerAleksey Kladov <[email protected]>2021-04-19 15:11:49 +0100
commit5f89a60f1a0feab1e2e0dd37e642877552675da4 (patch)
tree43fb164ef5ca02ccf8d9e8c3bedaa66d473a019c /crates/syntax/test_data/parser/ok/0045_block_attrs.rs
parente4f7f1e1bd2ca3c1816abf87779ad8893b7bf990 (diff)
fix: false positive about inner attrs in docs
closes #8541
Diffstat (limited to 'crates/syntax/test_data/parser/ok/0045_block_attrs.rs')
-rw-r--r--crates/syntax/test_data/parser/ok/0045_block_attrs.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/crates/syntax/test_data/parser/ok/0045_block_attrs.rs b/crates/syntax/test_data/parser/ok/0045_block_attrs.rs
new file mode 100644
index 000000000..ed4593759
--- /dev/null
+++ b/crates/syntax/test_data/parser/ok/0045_block_attrs.rs
@@ -0,0 +1,24 @@
1fn inner() {
2 #![doc("Inner attributes allowed here")]
3 //! As are ModuleDoc style comments
4 {
5 #![doc("Inner attributes are allowed in blocks used as statements")]
6 #![doc("Being validated is not affected by duplcates")]
7 //! As are ModuleDoc style comments
8 };
9 {
10 #![doc("Inner attributes are allowed in blocks when they are the last statement of another block")]
11 //! As are ModuleDoc style comments
12 }
13}
14
15fn outer() {
16 let _ = #[doc("Outer attributes are always allowed")] {};
17}
18
19// https://github.com/rust-analyzer/rust-analyzer/issues/689
20impl Whatever {
21 fn salsa_event(&self, event_fn: impl Fn() -> Event<Self>) {
22 #![allow(unused_variables)] // this is `inner_attr` of the block
23 }
24}