blob: 3c6ab86e4c65ce205360978cd76a534124bad1e0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![feature(multiple_supertrait_upcastable)]
#![deny(multiple_supertrait_upcastable)]
trait A {}
trait B {}
trait C: A + B {}
//~^ ERROR `C` is object-safe and has multiple supertraits
fn main() {}
|