We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
~const
1 parent 9b6c90a commit ba63277Copy full SHA for ba63277
src/tools/rust-analyzer/lib/ungrammar/Cargo.toml
@@ -1,7 +1,7 @@
1
[package]
2
name = "ungrammar"
3
description = "A DSL for describing concrete syntax trees"
4
-version = "1.14.8"
+version = "1.14.9"
5
license = "MIT OR Apache-2.0"
6
repository = "https://github.com/matklad/ungrammar"
7
edition = "2018"
src/tools/rust-analyzer/lib/ungrammar/rust.ungram
@@ -573,7 +573,7 @@ TypeBoundList =
573
574
TypeBound =
575
Lifetime
576
-| '?'? Type
+| ('?' | '~' 'const')? Type
577
578
//************************//
579
// Patterns //
0 commit comments