mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
18 lines
220 B
Rust
18 lines
220 B
Rust
// build-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_snake_case)]
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
struct CMap<'a> {
|
|
buf: &'a [u8],
|
|
}
|
|
|
|
fn CMap(buf: &[u8]) -> CMap {
|
|
CMap {
|
|
buf: buf
|
|
}
|
|
}
|
|
|
|
pub fn main() { }
|