mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
324 B
Rust
18 lines
324 B
Rust
// build-pass (FIXME(62277): could be check-pass?)
|
|
#![allow(dead_code)]
|
|
// Test to make sure that explicit self params work inside closures
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
struct Box {
|
|
x: usize
|
|
}
|
|
|
|
impl Box {
|
|
pub fn set_many(&mut self, xs: &[usize]) {
|
|
for x in xs { self.x = *x; }
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|