aboutsummaryrefslogtreecommitdiff
path: root/ui-tests/src/bin/attr_convert_duplicate.rs
blob: b074d815272d5e3915321a8e5f1865e9498e0c51 (plain)
1
2
3
4
5
6
7
8
#[dynamize::dynamize]
#[convert = |x: Foo| -> Bar {x.baz()}]
#[convert = |x: Foo| -> Bar {x.baz()}]
trait Trait {
    fn test(&self) -> Foo;
}

fn main() {}