mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
440 B
Rust
17 lines
440 B
Rust
use std::hash::BuildHasher;
|
|
|
|
fn next_u64() -> u64 {
|
|
let bh = std::collections::hash_map::RandomState::new();
|
|
let h = bh.build_hasher();
|
|
h.finish() //~ ERROR no method named `finish` found for struct `DefaultHasher`
|
|
}
|
|
|
|
trait Bar {}
|
|
impl Bar for String {}
|
|
|
|
fn main() {
|
|
let s = String::from("hey");
|
|
let x: &dyn Bar = &s;
|
|
x.as_ref(); //~ ERROR the method `as_ref` exists for reference `&dyn Bar`, but its trait bounds
|
|
}
|