rust/tests/ui/rfcs/rfc-2632-const-trait-impl/cross-crate.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
547 B
Rust
Raw Normal View History

2022-07-25 03:17:00 -05:00
// revisions: stock gated stocknc gatednc
// [gated] check-pass
2023-08-06 08:20:55 -05:00
#![cfg_attr(any(gated, gatednc), feature(const_trait_impl, effects))]
// aux-build: cross-crate.rs
extern crate cross_crate;
use cross_crate::*;
fn non_const_context() {
NonConst.func();
Const.func();
}
const fn const_context() {
2022-07-25 03:17:00 -05:00
#[cfg(any(stocknc, gatednc))]
NonConst.func();
2023-07-27 10:51:02 -05:00
//[stocknc]~^ ERROR: cannot call
2023-08-06 08:20:55 -05:00
//[gatednc]~^^ ERROR: the trait bound
Const.func();
2022-07-25 03:17:00 -05:00
//[stock]~^ ERROR: cannot call
2023-07-27 10:51:02 -05:00
//[stocknc]~^^ ERROR: cannot call
}
fn main() {}