Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/parser/src/syntax_kind.rs')
| -rw-r--r-- | crates/parser/src/syntax_kind.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/parser/src/syntax_kind.rs b/crates/parser/src/syntax_kind.rs index 4d4377422b..0483adc776 100644 --- a/crates/parser/src/syntax_kind.rs +++ b/crates/parser/src/syntax_kind.rs @@ -1,10 +1,10 @@ //! Defines [`SyntaxKind`] -- a fieldless enum of all possible syntactic //! constructs of the Rust language. -#[macro_use] mod generated; -pub use self::generated::SyntaxKind; +#[allow(unreachable_pub)] +pub use self::generated::{SyntaxKind, T}; impl From<u16> for SyntaxKind { #[inline] |