mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 04:07:08 +00:00
10 lines
109 B
Rust
10 lines
109 B
Rust
// check-pass
|
|
|
|
#![feature(const_trait_impl, effects)]
|
|
|
|
pub const fn owo() {}
|
|
|
|
fn main() {
|
|
let _ = owo;
|
|
}
|