diff options
| author | León Orell Valerian Liehr <me@fmease.dev> | 2024-06-19 14:24:25 +0200 |
|---|---|---|
| committer | León Orell Valerian Liehr <me@fmease.dev> | 2024-06-22 06:34:09 +0200 |
| commit | 38bd7a0fcbfeb206d7d38791c884e036dfbb04ff (patch) | |
| tree | 2334a71fb38520a74fdd2e70c2fc70313e31e370 /compiler/rustc_feature/src | |
| parent | bc12972bcd7fb93e515c14b9e1f514bc3d2683d8 (diff) | |
| download | rust-38bd7a0fcbfeb206d7d38791c884e036dfbb04ff.tar.gz rust-38bd7a0fcbfeb206d7d38791c884e036dfbb04ff.zip | |
Add `#[rustc_dump_{predicates,item_bounds}]`
Diffstat (limited to 'compiler/rustc_feature/src')
| -rw-r--r-- | compiler/rustc_feature/src/builtin_attrs.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/builtin_attrs.rs b/compiler/rustc_feature/src/builtin_attrs.rs index c165620f657..9e2756f07ed 100644 --- a/compiler/rustc_feature/src/builtin_attrs.rs +++ b/compiler/rustc_feature/src/builtin_attrs.rs @@ -1089,6 +1089,14 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[ "the `#[custom_mir]` attribute is just used for the Rust test suite", ), rustc_attr!( + TEST, rustc_dump_item_bounds, Normal, template!(Word), + WarnFollowing, EncodeCrossCrate::No + ), + rustc_attr!( + TEST, rustc_dump_predicates, Normal, template!(Word), + WarnFollowing, EncodeCrossCrate::No + ), + rustc_attr!( TEST, rustc_object_lifetime_default, Normal, template!(Word), WarnFollowing, EncodeCrossCrate::No ), |
