aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0039_type_arg.rs
diff options
context:
space:
mode:
authorCallym <[email protected]>2021-01-10 13:58:09 +0000
committerCallym <[email protected]>2021-01-10 13:58:09 +0000
commitdcb4c0ada632cef565894775e12b8cd2ce69e044 (patch)
treed117034987a35db75c049c511ffd2ba17cc1baf0 /crates/syntax/test_data/parser/inline/ok/0039_type_arg.rs
parent77362c71735a8b5ab4b5cd9f396fa657fbffe2cb (diff)
Allow `true` and `false` keywords in const generics
Diffstat (limited to 'crates/syntax/test_data/parser/inline/ok/0039_type_arg.rs')
-rw-r--r--crates/syntax/test_data/parser/inline/ok/0039_type_arg.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/syntax/test_data/parser/inline/ok/0039_type_arg.rs b/crates/syntax/test_data/parser/inline/ok/0039_type_arg.rs
index 0d07d7651..6a8721a73 100644
--- a/crates/syntax/test_data/parser/inline/ok/0039_type_arg.rs
+++ b/crates/syntax/test_data/parser/inline/ok/0039_type_arg.rs
@@ -1 +1 @@
type A = B<'static, i32, 1, { 2 }, Item=u64>; type A = B<'static, i32, 1, { 2 }, Item=u64, true, false>;