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
208 B
Rust
11 lines
208 B
Rust
// error-pattern:attempted access of field nap on type
|
|
// xfail-fast
|
|
// aux-build:cci_class_5.rs
|
|
use cci_class_5;
|
|
import cci_class_5::kitties::*;
|
|
|
|
fn main() {
|
|
let nyan : cat = cat(52u, 99);
|
|
nyan.nap();
|
|
}
|