blob: bde8bf20f46c5d1942ca195bfd56e9094f0126d1 [file] [log] [blame]
// This tests that `const_trait` default methods can
// be called from a const context when used across crates.
//
// check-pass
#![feature(const_trait_impl)]
// aux-build: cross-crate.rs
extern crate cross_crate;
use cross_crate::*;
const _: () = {
Const.func();
Const.defaulted_func();
};
fn main() {}