mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 19:54:24 +00:00
19 lines
299 B
Rust
19 lines
299 B
Rust
// skip-filecheck
|
|
// unit-test: Inline
|
|
// compile-flags: --crate-type=lib -C panic=abort
|
|
|
|
trait Foo {
|
|
fn bar(&self) -> i32;
|
|
}
|
|
|
|
impl<T> Foo for T {
|
|
fn bar(&self) -> i32 {
|
|
0
|
|
}
|
|
}
|
|
|
|
// EMIT_MIR inline_generically_if_sized.call.Inline.diff
|
|
pub fn call<T>(s: &T) -> i32 {
|
|
s.bar()
|
|
}
|