mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
301 B
Rust
13 lines
301 B
Rust
// 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);
|
|
}
|