os-rust/tests/ui/stability-attribute/generics-default-stability-where.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
346 B
Rust
Raw Normal View History

2020-06-22 00:08:54 -04:00
//@ aux-build:unstable_generic_param.rs
extern crate unstable_generic_param;
use unstable_generic_param::*;
impl<T> Trait3<usize> for T where T: Trait2<usize> { //~ ERROR use of unstable library feature 'unstable_default'
//~^ ERROR `T` must be used as the type parameter for some local type
2020-06-22 00:08:54 -04:00
fn foo() -> usize { T::foo() }
}
fn main() {}