mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
18 lines
429 B
Rust
18 lines
429 B
Rust
//@ check-pass
|
|
use std::cell::Cell;
|
|
|
|
pub enum JsValue {
|
|
Undefined,
|
|
Object(Cell<bool>),
|
|
}
|
|
|
|
impl ::std::ops::Drop for JsValue {
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
const UNDEFINED: &JsValue = &JsValue::Undefined;
|
|
//~^ WARN encountered mutable pointer in final value of constant
|
|
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
fn main() {
|
|
}
|