mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 16:45:37 +00:00
16 lines
235 B
Rust
16 lines
235 B
Rust
|
struct X(i32);
|
||
|
|
||
|
impl X {
|
||
|
pub(crate) fn f() {
|
||
|
self.0
|
||
|
//~^ ERROR expected value, found module `self`
|
||
|
}
|
||
|
|
||
|
pub fn g() {
|
||
|
self.0
|
||
|
//~^ ERROR expected value, found module `self`
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|