os-rust/tests/ui/issues/issue-2748-a.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
220 B
Rust
Raw Normal View History

// build-pass
#![allow(dead_code)]
#![allow(non_snake_case)]
// pretty-expanded FIXME #23616
struct CMap<'a> {
buf: &'a [u8],
2012-09-05 15:58:43 -07:00
}
fn CMap(buf: &[u8]) -> CMap {
2012-09-05 15:58:43 -07:00
CMap {
buf: buf
}
}
pub fn main() { }