Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
29
tests/ui/traits/issue-23003-overflow.rs
Normal file
29
tests/ui/traits/issue-23003-overflow.rs
Normal file
|
@ -0,0 +1,29 @@
|
|||
// A variant of traits-issue-23003 in which an infinite series of
|
||||
// types are required. This test now just compiles fine, since the
|
||||
// relevant rules that triggered the overflow were removed.
|
||||
|
||||
// check-pass
|
||||
#![allow(dead_code)]
|
||||
|
||||
use std::marker::PhantomData;
|
||||
|
||||
trait Async {
|
||||
type Cancel;
|
||||
}
|
||||
|
||||
struct Receipt<A:Async> {
|
||||
marker: PhantomData<A>,
|
||||
}
|
||||
|
||||
struct Complete<B> {
|
||||
core: Option<B>,
|
||||
}
|
||||
|
||||
impl<B> Async for Complete<B> {
|
||||
type Cancel = Receipt<Complete<Option<B>>>;
|
||||
}
|
||||
|
||||
fn foo(_: Receipt<Complete<()>>) { }
|
||||
|
||||
|
||||
fn main() { }
|
Loading…
Add table
Add a link
Reference in a new issue