aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data
diff options
context:
space:
mode:
authorDylan MacKenzie <[email protected]>2019-09-14 23:59:24 +0100
committerDylan MacKenzie <[email protected]>2019-09-15 00:31:09 +0100
commit253a18f93893ffa0e2804937c913fed84df5f8d3 (patch)
tree9d039c8e9720fbc693f5a0a096014e1886226336 /crates/ra_syntax/test_data
parent211171ffe6a4e8cbf31b9513972e59a8b9bdc811 (diff)
Allow an underscore as the identifier in `const` items
Diffstat (limited to 'crates/ra_syntax/test_data')
-rw-r--r--crates/ra_syntax/test_data/parser/inline/err/0013_static_underscore.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_syntax/test_data/parser/inline/err/0013_static_underscore.rs b/crates/ra_syntax/test_data/parser/inline/err/0013_static_underscore.rs
new file mode 100644
index 000000000..df8cecb43
--- /dev/null
+++ b/crates/ra_syntax/test_data/parser/inline/err/0013_static_underscore.rs
@@ -0,0 +1 @@
static _: i32 = 5;