rust/tests/ui/resolve/auxiliary/suggest-constructor-cycle-error.rs

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

13 lines
179 B
Rust
Raw Normal View History

mod m {
pub struct Uuid(());
impl Uuid {
pub fn encode_buffer() -> [u8; LENGTH] {
[]
}
}
const LENGTH: usize = 0;
}
pub use m::Uuid;