mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
2ffb0de8cf
They pass fine. Only tests that required `extern crate rustc_*` or were marked `ignore-stage1` have been keep in fulldeps.
23 lines
334 B
Rust
23 lines
334 B
Rust
// run-pass
|
|
// aux-build:issue-16822.rs
|
|
|
|
extern crate issue_16822 as lib;
|
|
|
|
use std::cell::RefCell;
|
|
|
|
struct App {
|
|
i: isize
|
|
}
|
|
|
|
impl lib::Update for App {
|
|
fn update(&mut self) {
|
|
self.i += 1;
|
|
}
|
|
}
|
|
|
|
fn main(){
|
|
let app = App { i: 5 };
|
|
let window = lib::Window { data: RefCell::new(app) };
|
|
window.update(1);
|
|
}
|