mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
210 B
Rust
14 lines
210 B
Rust
use std::cell::RefCell;
|
|
|
|
struct TheDarkKnight;
|
|
|
|
impl TheDarkKnight {
|
|
fn nothing_is_true(self) {}
|
|
}
|
|
|
|
fn main() {
|
|
let x = RefCell::new(TheDarkKnight);
|
|
|
|
x.borrow().nothing_is_true(); //~ ERROR E0507
|
|
}
|