mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +00:00
19 lines
385 B
Rust
19 lines
385 B
Rust
struct Foo {
|
|
field: u32,
|
|
}
|
|
|
|
impl Foo {
|
|
fn field(&self) -> u32 {
|
|
self.field
|
|
}
|
|
|
|
fn new() -> Foo {
|
|
field; //~ ERROR cannot find value `field` in this scope
|
|
Foo { field } //~ ERROR cannot find value `field` in this scope
|
|
}
|
|
fn clone(&self) -> Foo {
|
|
Foo { field } //~ ERROR cannot find value `field` in this scope
|
|
}
|
|
}
|
|
fn main() {}
|