// Copyright 2016 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #![feature(associated_type_defaults)] struct S(T); trait Tr { type A = (); } impl Tr for S {} // OK impl> Tr for S {} // OK impl Tr for S where Self: Copy {} // OK impl Tr for S where S: Copy {} // OK impl Tr for S where Self::A: Copy {} // OK impl Tr for Self {} //~ ERROR cyclic dependency detected impl Tr for S {} //~ ERROR cyclic dependency detected impl Self {} //~ ERROR cyclic dependency detected impl S {} //~ ERROR cyclic dependency detected impl Tr for S {} //~ ERROR cyclic dependency detected fn main() {}