about summary refs log tree commit diff
path: root/tests/ui/traits/const-traits/cross-crate.rs
blob: b07aa8944c05dd12f597e301cf1a92b7b6133caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//@ revisions: stock gated stocknc gatednc
//@ [gated] check-pass
//@ compile-flags: -Znext-solver
#![cfg_attr(any(gated, gatednc), feature(const_trait_impl))]
#![allow(incomplete_features)]

//@ aux-build: cross-crate.rs
extern crate cross_crate;

use cross_crate::*;

fn non_const_context() {
    NonConst.func();
    Const.func();
}

const fn const_context() {
    #[cfg(any(stocknc, gatednc))]
    NonConst.func();
    //[stocknc]~^ ERROR: cannot call
    //[gatednc]~^^ ERROR: the trait bound
    Const.func();
    //[stock,stocknc]~^ ERROR: cannot call
}

fn main() {}