aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/ok/0024_const_item.rs
diff options
context:
space:
mode:
authorLukas Wirth <[email protected]>2021-01-24 01:17:41 +0000
committerLukas Wirth <[email protected]>2021-01-24 01:17:41 +0000
commit70d43c3faf6cc4e6fe4833c6375d05e54874ca0d (patch)
treef4b06a875d92661bcf5b4080864baa07dabb8914 /crates/syntax/test_data/parser/ok/0024_const_item.rs
parent89fef5307e81d5d23bb65677000f35332190661a (diff)
Add validation for mutable const items
Diffstat (limited to 'crates/syntax/test_data/parser/ok/0024_const_item.rs')
-rw-r--r--crates/syntax/test_data/parser/ok/0024_const_item.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/syntax/test_data/parser/ok/0024_const_item.rs b/crates/syntax/test_data/parser/ok/0024_const_item.rs
index a806a209d..1f2ffa0da 100644
--- a/crates/syntax/test_data/parser/ok/0024_const_item.rs
+++ b/crates/syntax/test_data/parser/ok/0024_const_item.rs
@@ -1,3 +1,2 @@
1const _: u32 = 0; 1const _: u32 = 0;
2const FOO: u32 = 92; 2const FOO: u32 = 92;
3const mut BAR: u32 = 62;