blob: 54e5c95c259ff14df07bfe541c20bed4c4645326 [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, effects)]
//@ aux-build: cross-crate.rs
extern crate cross_crate;
use cross_crate::*;
const _: () = {
Const.func();
Const.defaulted_func();
};
fn main() {}