-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only inherit const stability for methods of
impl const Trait
blocks
- Loading branch information
Showing
5 changed files
with
74 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
// check-pass | ||
|
||
#![feature(intrinsics, staged_api, const_intrinsic_copy)] | ||
#![stable(feature = "core", since = "1.6.0")] | ||
|
||
#[stable(feature = "rust1", since = "1.0.0")] | ||
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")] | ||
#[inline] | ||
pub const unsafe fn copy<T>(src: *const T, dst: *mut T, count: usize) { | ||
// Const stability attributes are not inherited from parent items. | ||
extern "rust-intrinsic" { | ||
fn copy<T>(src: *const T, dst: *mut T, count: usize); | ||
} | ||
|
||
// Even though the `copy` intrinsic lacks stability attributes, this works, because it | ||
// inherits its stability attributes from its parent. That includes `rustc_const_(un)stable` | ||
// attributes. | ||
unsafe { copy(src, dst, count) } | ||
//~^ ERROR calls in constant functions are limited to constant functions | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
error[E0015]: calls in constant functions are limited to constant functions, tuple structs and tuple variants | ||
--> $DIR/intrinsic_without_const_stab.rs:13:14 | ||
| | ||
LL | unsafe { copy(src, dst, count) } | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0015`. |