mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
19 lines
326 B
Rust
19 lines
326 B
Rust
// revisions: current next
|
|
//[next] compile-flags: -Ztrait-solver=next
|
|
|
|
#![feature(dyn_star)]
|
|
#![allow(incomplete_features)]
|
|
|
|
use std::fmt::Debug;
|
|
|
|
fn dyn_debug(_: (dyn* Debug + '_)) {
|
|
|
|
}
|
|
|
|
fn polymorphic<T: Debug + ?Sized>(t: &T) {
|
|
dyn_debug(t);
|
|
//~^ ERROR `&T` needs to have the same ABI as a pointer
|
|
}
|
|
|
|
fn main() {}
|