mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +00:00
14 lines
157 B
Rust
14 lines
157 B
Rust
// run-pass
|
|
pub trait Foo {
|
|
fn foo(&self);
|
|
}
|
|
|
|
|
|
impl<T, const N: usize> Foo for [T; N] {
|
|
fn foo(&self) {
|
|
let _ = &self;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|