11610f9ca1
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.
11 lines
221 B
Rust
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);
|
|
}
|