mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 06:22:00 +00:00
19 lines
372 B
Rust
19 lines
372 B
Rust
|
// compile-pass
|
||
|
// note this was only reproducible with lib crates
|
||
|
// compile-flags: --crate-type=lib
|
||
|
|
||
|
pub struct Hz;
|
||
|
|
||
|
impl Hz {
|
||
|
pub const fn num(&self) -> u32 {
|
||
|
42
|
||
|
}
|
||
|
pub const fn normalized(&self) -> Hz {
|
||
|
Hz
|
||
|
}
|
||
|
|
||
|
pub const fn as_u32(&self) -> u32 {
|
||
|
self.normalized().num() // this used to promote the `self.normalized()`
|
||
|
}
|
||
|
}
|