rust/src/test/compile-fail/private-class-field-cross-crate.rs
Tim Chevalier 11610f9ca1 In typeck, don't call ty::store_iface_methods on private methods
This was resulting in a different error message depending on whether
the private method you were trying to call was in the same crate
or a different one.
2012-03-26 10:46:37 -07:00

11 lines
221 B
Rust

// error-pattern:no public field or method with that name
// xfail-fast
// aux-build:cci_class.rs
use cci_class;
import cci_class::kitties::*;
fn main() {
let nyan : cat = cat(52u, 99);
assert (nyan.meows == 52u);
}