-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
279 additions
and
2 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
src/test/ui/rfc1598-generic-associated-types/collections.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![feature(generic_associated_types)] | ||
#![feature(associated_type_defaults)] | ||
|
||
//FIXME(#44265): "lifetime parameters are not allowed on this type" errors will be addressed in a | ||
//follow-up PR | ||
|
||
// A Collection trait and collection families. | ||
// Based on http://smallcultfollowing.com/babysteps/blog/2016/11/03/associated-type-constructors-part-2-family-traits/ | ||
|
||
trait Collection<T> { | ||
fn empty() -> Self; | ||
fn add(&mut self, value: T); | ||
fn iterate<'iter>(&'iter self) -> Self::Iter<'iter>; | ||
//~^ ERROR lifetime parameters are not allowed on this type [E0110] | ||
type Iter<'iter>: Iterator<Item=&'iter T>; | ||
type Family: CollectionFamily; | ||
// Test associated type defaults with parameters | ||
type Sibling<U>: Collection<U> = <<Self as Collection<T>>::Family as CollectionFamily>::Member<U>; | ||
//~^ ERROR type parameters are not allowed on this type [E0109] | ||
} | ||
|
||
trait CollectionFamily { | ||
type Member<T>: Collection<T, Family = Self>; | ||
} | ||
|
||
struct VecFamily; | ||
|
||
impl CollectionFamily for VecFamily { | ||
type Member<T> = Vec<T>; | ||
} | ||
|
||
impl<T> Collection<T> for Vec<T> { | ||
fn empty() -> Self { | ||
Vec::new() | ||
} | ||
fn add(&mut self, value: T) { | ||
self.push(value) | ||
} | ||
fn iterate<'iter>(&'iter self) -> Self::Iter<'iter> { | ||
//~^ ERROR lifetime parameters are not allowed on this type [E0110] | ||
self.iter() | ||
} | ||
type Iter<'iter> = std::slice::Iter<'iter, T>; | ||
type Family = VecFamily; | ||
} | ||
|
||
fn floatify<C>(ints: &C) -> <<C as Collection<i32>>::Family as CollectionFamily>::Member<f32> | ||
//~^ ERROR type parameters are not allowed on this type [E0109] | ||
where C: Collection<i32> { | ||
let mut res = C::Family::Member::<f32>::empty(); | ||
for &v in ints.iterate() { | ||
res.add(v as f32); | ||
} | ||
res | ||
} | ||
|
||
fn floatify_sibling<C>(ints: &C) -> <C as Collection<i32>>::Sibling<f32> | ||
//~^ ERROR type parameters are not allowed on this type [E0109] | ||
where C: Collection<i32> { | ||
let mut res = C::Family::Member::<f32>::empty(); | ||
for &v in ints.iterate() { | ||
res.add(v as f32); | ||
} | ||
res | ||
} | ||
|
||
fn use_floatify() { | ||
let a = vec![1i32, 2, 3]; | ||
let b = floatify(a); | ||
println!("{}", b.iterate().next()); | ||
let c = floatify_sibling(a); | ||
println!("{}", c.iterate().next()); | ||
} | ||
|
||
fn main() {} |
34 changes: 34 additions & 0 deletions
34
src/test/ui/rfc1598-generic-associated-types/collections.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
error[E0109]: type parameters are not allowed on this type | ||
--> $DIR/collections.rs:57:90 | ||
| | ||
LL | fn floatify<C>(ints: &C) -> <<C as Collection<i32>>::Family as CollectionFamily>::Member<f32> | ||
| ^^^ type parameter not allowed | ||
|
||
error[E0109]: type parameters are not allowed on this type | ||
--> $DIR/collections.rs:67:69 | ||
| | ||
LL | fn floatify_sibling<C>(ints: &C) -> <C as Collection<i32>>::Sibling<f32> | ||
| ^^^ type parameter not allowed | ||
|
||
error[E0110]: lifetime parameters are not allowed on this type | ||
--> $DIR/collections.rs:23:50 | ||
| | ||
LL | fn iterate<'iter>(&'iter self) -> Self::Iter<'iter>; | ||
| ^^^^^ lifetime parameter not allowed on this type | ||
|
||
error[E0109]: type parameters are not allowed on this type | ||
--> $DIR/collections.rs:28:100 | ||
| | ||
LL | type Sibling<U>: Collection<U> = <<Self as Collection<T>>::Family as CollectionFamily>::Member<U>; | ||
| ^ type parameter not allowed | ||
|
||
error[E0110]: lifetime parameters are not allowed on this type | ||
--> $DIR/collections.rs:49:50 | ||
| | ||
LL | fn iterate<'iter>(&'iter self) -> Self::Iter<'iter> { | ||
| ^^^^^ lifetime parameter not allowed on this type | ||
|
||
error: aborting due to 5 previous errors | ||
|
||
Some errors occurred: E0109, E0110. | ||
For more information about an error, try `rustc --explain E0109`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![feature(generic_associated_types)] | ||
|
||
//FIXME(#44265): The lifetime shadowing and type parameter shadowing | ||
// should cause an error. This will be addressed by a future PR. | ||
// For now this compiles: | ||
// must-compile-successfully | ||
|
||
trait Shadow<'a> { | ||
type Bar<'a>; // Error: shadowed lifetime | ||
} | ||
|
||
trait NoShadow<'a> { | ||
type Bar<'b>; // OK | ||
} | ||
|
||
impl<'a> NoShadow<'a> for &'a u32 | ||
{ | ||
type Bar<'a> = i32; // Error: shadowed lifetime | ||
} | ||
|
||
trait ShadowT<T> { | ||
type Bar<T>; // Error: shadowed type parameter | ||
} | ||
|
||
trait NoShadowT<T> { | ||
type Bar<U>; // OK | ||
} | ||
|
||
impl<T> NoShadowT<T> for Option<T> | ||
{ | ||
type Bar<T> = i32; // Error: shadowed type parameter | ||
} | ||
|
||
fn main() {} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters