blob: 869b665c8cbb775f042e7896bd5966ef2761d0c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//@ aux-build:dyn-incompatible.rs
extern crate dyn_incompatible;
pub trait B where
Self: dyn_incompatible::A,
{
fn f2(&self);
}
struct S(Box<dyn B>);
//~^ ERROR the trait `B` is not dyn compatible
fn main() {}
|