mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +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() {}
|