rust/src/test/ui/map-types.rs

20 lines
489 B
Rust

#![feature(box_syntax)]
use std::collections::HashMap;
trait Map<K, V>
{
fn get(&self, k: K) -> V { panic!() }
}
impl<K, V> Map<K, V> for HashMap<K, V> {}
// Test that trait types printed in error msgs include the type arguments.
fn main() {
let x: Box<HashMap<isize, isize>> = box HashMap::new();
let x: Box<dyn Map<isize, isize>> = x;
let y: Box<dyn Map<usize, isize>> = Box::new(x);
//~^ ERROR `Box<dyn Map<isize, isize>>: Map<usize, isize>` is not satisfied
}