aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/ok/0045_block_inner_attrs.rs
diff options
context:
space:
mode:
authorDJMcNab <[email protected]>2019-01-28 20:03:56 +0000
committerDJMcNab <[email protected]>2019-01-28 20:03:56 +0000
commit00e6b5d26c82d5faff066c24418a0eb5741efcd1 (patch)
tree82ad741bab4f820850ba6f13e2b760cc840f43fb /crates/ra_syntax/tests/data/parser/ok/0045_block_inner_attrs.rs
parent137b1ccb715fe795cdf6c528bef6f8df3387f158 (diff)
Parse and validate attributes in blocks
Diffstat (limited to 'crates/ra_syntax/tests/data/parser/ok/0045_block_inner_attrs.rs')
-rw-r--r--crates/ra_syntax/tests/data/parser/ok/0045_block_inner_attrs.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/ra_syntax/tests/data/parser/ok/0045_block_inner_attrs.rs b/crates/ra_syntax/tests/data/parser/ok/0045_block_inner_attrs.rs
new file mode 100644
index 000000000..88df8138e
--- /dev/null
+++ b/crates/ra_syntax/tests/data/parser/ok/0045_block_inner_attrs.rs
@@ -0,0 +1,20 @@
1fn block() {
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
15// https://github.com/rust-analyzer/rust-analyzer/issues/689
16impl Whatever {
17 fn salsa_event(&self, event_fn: impl Fn() -> Event<Self>) {
18 #![allow(unused_variables)] // this is `inner_attr` of the block
19 }
20}