blob: 2c980d839b94be8dd656b405076dfdaff5ecfbff [file] [log] [blame]
// aux-build:coherence_inherent_cc_lib.rs
// revisions: old re
#![cfg_attr(re, feature(re_rebalance_coherence))]
// Tests that methods that implement a trait cannot be invoked
// unless the trait is imported.
extern crate coherence_inherent_cc_lib;
mod Import {
// Trait is in scope here:
use coherence_inherent_cc_lib::TheStruct;
use coherence_inherent_cc_lib::TheTrait;
fn call_the_fn(s: &TheStruct) {
s.the_fn();
}
}
mod NoImport {
// Trait is not in scope here:
use coherence_inherent_cc_lib::TheStruct;
fn call_the_fn(s: &TheStruct) {
s.the_fn();
//[old]~^ ERROR no method named `the_fn` found
//[re]~^^ ERROR E0599
}
}
fn main() {}