mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-10 12:18:49 +00:00
commit
8f6c5f0fbb
2 changed files with 2 additions and 2 deletions
|
@ -629,7 +629,7 @@ pub const INERT_ATTRIBUTES: &[BuiltinAttribute] = &[
|
||||||
rustc_attr!(TEST, rustc_regions, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_regions, Normal, template!(Word), WarnFollowing),
|
||||||
rustc_attr!(
|
rustc_attr!(
|
||||||
TEST, rustc_error, Normal,
|
TEST, rustc_error, Normal,
|
||||||
template!(Word, List: "delay_span_bug_from_inside_query"), WarnFollowingWordOnly
|
template!(Word, List: "span_delayed_bug_from_inside_query"), WarnFollowingWordOnly
|
||||||
),
|
),
|
||||||
rustc_attr!(TEST, rustc_dump_user_substs, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_dump_user_substs, Normal, template!(Word), WarnFollowing),
|
||||||
rustc_attr!(TEST, rustc_evaluate_where_clauses, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_evaluate_where_clauses, Normal, template!(Word), WarnFollowing),
|
||||||
|
|
|
@ -110,7 +110,7 @@ struct LayoutCx<'a> {
|
||||||
impl<'a> LayoutCalculator for LayoutCx<'a> {
|
impl<'a> LayoutCalculator for LayoutCx<'a> {
|
||||||
type TargetDataLayoutRef = &'a TargetDataLayout;
|
type TargetDataLayoutRef = &'a TargetDataLayout;
|
||||||
|
|
||||||
fn delay_bug(&self, txt: String) {
|
fn delayed_bug(&self, txt: String) {
|
||||||
never!("{}", txt);
|
never!("{}", txt);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue