blob: 626630e60b720e94cee5842b66289abb97bcf610 [file] [log] [blame]
#![feature(multiple_supertrait_upcastable)]
#![deny(multiple_supertrait_upcastable)]
trait A {}
trait B {}
trait C: A + B {}
//~^ ERROR `C` is dyn-compatible and has multiple supertraits
fn main() {}