mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-04 09:53:04 +03:00
12 lines
153 B
Rust
12 lines
153 B
Rust
#![cfg_attr(test, allow(dead_code))]
|
|
|
|
pub struct Handler;
|
|
|
|
impl Handler {
|
|
pub fn new() -> Handler {
|
|
Handler
|
|
}
|
|
}
|
|
|
|
pub unsafe fn init() {}
|