2013-03-05 17:49:03 -05:00
|
|
|
// aux-build:coherence_inherent_cc_lib.rs
|
|
|
|
|
|
|
|
// Tests that methods that implement a trait cannot be invoked
|
|
|
|
// unless the trait is imported.
|
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate coherence_inherent_cc_lib;
|
2013-03-05 17:49:03 -05:00
|
|
|
|
|
|
|
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) {
|
2018-12-29 00:11:13 +01:00
|
|
|
s.the_fn();
|
2019-10-26 17:28:02 +02:00
|
|
|
//~^ ERROR E0599
|
2013-03-05 17:49:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-23 17:20:36 -07:00
|
|
|
fn main() {}
|