// run-pass #![allow(dead_code)] // pretty-expanded FIXME #23616 use std::default::Default; pub struct X { a: T, } // reordering these bounds stops the ICE // // nmatsakis: This test used to have the bounds Default + PartialEq + // Default, but having duplicate bounds became illegal. impl Default for X { fn default() -> X { X { a: Default::default() } } } macro_rules! constants { () => { let _ : X = Default::default(); } } pub fn main() { constants!(); }