mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-06 21:53:46 +00:00
11 lines
149 B
Rust
11 lines
149 B
Rust
// compile-flags: -Cmetadata=aux
|
|
|
|
pub const fn foo() {}
|
|
pub const unsafe fn bar() {}
|
|
|
|
pub struct Foo;
|
|
|
|
impl Foo {
|
|
pub const unsafe fn baz() {}
|
|
}
|