rust/tests/ui/resolve/suggestions/auxiliary/suggest-constructor-cycle-error.rs
xizheyin 25ab022f29 move tests/ui/resolve/suggest* to tests/ui/resolve/suggestions/
Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn>
2025-07-03 23:11:57 +08:00

13 lines
179 B
Rust

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