//! const_uuid.rs use lol_macros::{const_uuid, const_uuid_wide}; static _FOO: &'static str = const_uuid!(); static _PREFIX_FOO: &'static str = const_uuid!(prefix = r#"\\.\pipe\"#); static _POSTFIX_FOO: &'static str = const_uuid!(postfix = "-foo"); static _PREPOSTFIX_FOO: &'static str = const_uuid!(prefix = r#"\\.\pipe\"#, postfix = "-foo"); const _W: *const u16 = const_uuid_wide!(prefix = r#"\\.\pipe\"#); fn main() {}