mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
22 lines
277 B
Rust
22 lines
277 B
Rust
//@ check-pass
|
|
|
|
trait Usizer {
|
|
fn m(self) -> usize;
|
|
}
|
|
|
|
fn f<const N: usize>(u: impl Usizer) -> usize {
|
|
N + u.m()
|
|
}
|
|
|
|
struct Usizable;
|
|
|
|
impl Usizer for Usizable {
|
|
fn m(self) -> usize {
|
|
16
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(f::<4usize>(Usizable), 20usize);
|
|
}
|