mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
22 lines
314 B
Rust
22 lines
314 B
Rust
// run-pass
|
|
|
|
pub struct Data<T> {
|
|
function: fn() -> T,
|
|
}
|
|
|
|
impl<T> Data<T> {
|
|
pub const fn new(function: fn() -> T) -> Data<T> {
|
|
Data {
|
|
function: function,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub static DATA: Data<i32> = Data::new(|| {
|
|
413i32
|
|
});
|
|
|
|
fn main() {
|
|
print!("{:?}", (DATA.function)());
|
|
}
|