2014-02-03 19:31:00 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-12-30 09:00:05 -06:00
|
|
|
// The error here is strictly due to orphan rules; the impl here
|
|
|
|
// generalizes the one upstream
|
2014-02-03 19:31:00 -06:00
|
|
|
|
|
|
|
// aux-build:trait_impl_conflict.rs
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate trait_impl_conflict;
|
2014-02-03 19:31:00 -06:00
|
|
|
use trait_impl_conflict::Foo;
|
|
|
|
|
2014-09-28 16:17:22 -05:00
|
|
|
impl<A> Foo for A {
|
2015-02-16 13:40:38 -06:00
|
|
|
//~^ ERROR type parameter `A` must be used as the type parameter for some local type
|
2014-02-03 19:31:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|