mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-26 11:59:49 +00:00
16 lines
304 B
Rust
16 lines
304 B
Rust
async fn foo() {}
|
|
extern fn foo() {}
|
|
const fn foo() {}
|
|
const unsafe fn foo() {}
|
|
unsafe extern "C" fn foo() {}
|
|
unsafe fn foo() {}
|
|
async unsafe fn foo() {}
|
|
const unsafe fn bar() {}
|
|
|
|
unsafe trait T {}
|
|
auto trait T {}
|
|
unsafe auto trait T {}
|
|
|
|
unsafe impl Foo {}
|
|
default impl Foo {}
|
|
unsafe default impl Foo {}
|