blob: 3d62405d9ae207ec5f1b3003bd44cc86b8198491 [file] [log] [blame] [edit]
// Test that `const unsafe trait` and `const unsafe auto trait` works.
//@ check-pass
#![feature(const_trait_impl)]
#![feature(auto_traits)]
pub const unsafe trait Owo {}
const unsafe trait OwO {}
pub const unsafe auto trait UwU {}
const unsafe auto trait Uwu {}
fn main() {}