mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 01:17:27 +00:00
minor
This commit is contained in:
parent
79ce0fa8d7
commit
1b2e70df99
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ macro_rules! token_set {
|
|||
#[test]
|
||||
fn token_set_works_for_tokens() {
|
||||
use crate::SyntaxKind::*;
|
||||
let ts = token_set! { EOF, SHEBANG };
|
||||
let ts = token_set![EOF, SHEBANG];
|
||||
assert!(ts.contains(EOF));
|
||||
assert!(ts.contains(SHEBANG));
|
||||
assert!(!ts.contains(PLUS));
|
||||
|
|
Loading…
Reference in a new issue