rust/src/test/ui/consts/intrinsic_without_const_stab.rs

18 lines
608 B
Rust
Raw Normal View History

2021-01-04 17:01:58 -06:00
#![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.
2021-01-04 17:01:58 -06:00
extern "rust-intrinsic" {
fn copy<T>(src: *const T, dst: *mut T, count: usize);
}
unsafe { copy(src, dst, count) }
//~^ ERROR calls in constant functions are limited to constant functions
2021-01-04 17:01:58 -06:00
}
fn main() {}