diff options
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.rs | 3 |
1 files changed, 3 insertions, 0 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 new file mode 100644 index 000000000..a806a209d --- /dev/null +++ b/crates/syntax/test_data/parser/ok/0024_const_item.rs | |||
@@ -0,0 +1,3 @@ | |||
1 | const _: u32 = 0; | ||
2 | const FOO: u32 = 92; | ||
3 | const mut BAR: u32 = 62; | ||