summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-20676.rs
blob: 2bc5034960a1bfdaf9d862ec13878e96577043fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-pass
// Regression test for #20676. Error was that we didn't support
// UFCS-style calls to a method in `Trait` where `Self` was bound to a
// trait object of type `Trait`. See also `ufcs-trait-object.rs`.


use std::fmt;

fn main() {
    let a: &dyn fmt::Debug = &1;
    format!("{:?}", a);
}