32 lines
792 B
Rust
32 lines
792 B
Rust
// Test for RFC 1268: we allow overlapping impls of marker traits,
|
|
// that is, traits without items. In this case, a type `T` is
|
|
// `MyMarker` if it is either `Debug` or `Display`. This test just
|
|
// checks that we don't consider **all** types to be `MyMarker`. See
|
|
// also the companion test in
|
|
// `run-pass/overlap-permitted-for-marker-traits.rs`.
|
|
|
|
#![feature(overlapping_marker_traits)]
|
|
#![feature(optin_builtin_traits)]
|
|
|
|
use std::fmt::{Debug, Display};
|
|
|
|
trait Marker {}
|
|
|
|
impl<T: Debug> Marker for T {}
|
|
impl<T: Display> Marker for T {}
|
|
|
|
fn is_marker<T: Marker>() { }
|
|
|
|
struct NotDebugOrDisplay;
|
|
|
|
fn main() {
|
|
// Debug && Display:
|
|
is_marker::<i32>();
|
|
|
|
// Debug && !Display:
|
|
is_marker::<Vec<i32>>();
|
|
|
|
// !Debug && !Display
|
|
is_marker::<NotDebugOrDisplay>(); //~ ERROR
|
|
}
|