mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
246 B
Rust
17 lines
246 B
Rust
// Test that we check where-clauses on inherent impls.
|
|
|
|
#![feature(associated_type_defaults)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
trait ExtraCopy<T:Copy> { }
|
|
|
|
struct Foo<T,U>(T,U);
|
|
|
|
impl<T,U> Foo<T,U> where T: ExtraCopy<U> //~ ERROR E0277
|
|
{
|
|
}
|
|
|
|
|
|
fn main() { }
|