Skip to content

Commit

Permalink
Update test suite to nightly-2024-02-26
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Feb 26, 2024
1 parent 07a2065 commit 1fc3200
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/common/eq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ use rustc_ast::ast::WhereEqPredicate;
use rustc_ast::ast::WherePredicate;
use rustc_ast::ast::WhereRegionPredicate;
use rustc_ast::ptr::P;
use rustc_ast::token::{self, CommentKind, Delimiter, Lit, Nonterminal, Token, TokenKind};
use rustc_ast::token::{
self, CommentKind, Delimiter, IdentIsRaw, Lit, Nonterminal, Token, TokenKind,
};
use rustc_ast::tokenstream::{
AttrTokenStream, AttrTokenTree, AttributesData, DelimSpacing, DelimSpan, LazyAttrTokenStream,
Spacing, TokenStream, TokenTree,
Expand Down Expand Up @@ -752,7 +754,7 @@ fn doc_comment<'a>(
match trees.next() {
Some(TokenTree::Token(
Token {
kind: TokenKind::Ident(symbol, false),
kind: TokenKind::Ident(symbol, IdentIsRaw::No),
span: _,
},
_spacing,
Expand Down

0 comments on commit 1fc3200

Please sign in to comment.