mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
17 lines
293 B
Rust
17 lines
293 B
Rust
//@ build-pass (FIXME(62277): could be check-pass?)
|
|
#![allow(dead_code)]
|
|
// Test to make sure that explicit self params work inside closures
|
|
|
|
|
|
struct Box {
|
|
x: usize
|
|
}
|
|
|
|
impl Box {
|
|
pub fn set_many(&mut self, xs: &[usize]) {
|
|
for x in xs { self.x = *x; }
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|