forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#48020 - RalfJung:type-alias-bounds, r=petro…
…chenkov Warn about more ignored bounds in type aliases It seems that all bounds in type aliases are entirely ignored, not just type bounds. This extends the warning appropriately. I assume this should be made a hard error with the next epoch? I can't see any reason to accept these programs. (And suddenly enforcing these type bounds would be a breaking change.)
- Loading branch information
Showing
5 changed files
with
68 additions
and
23 deletions.
There are no files selected for viewing
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
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,33 @@ | ||
// Copyright 2014 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. | ||
|
||
// must-compile-successfully | ||
|
||
use std::rc::Rc; | ||
|
||
type SVec<T: Send> = Vec<T>; | ||
type VVec<'b, 'a: 'b> = Vec<&'a i32>; | ||
type WVec<'b, T: 'b> = Vec<T>; | ||
|
||
fn foo<'a>(y: &'a i32) { | ||
// If the bounds above would matter, the code below would be rejected. | ||
let mut x : SVec<_> = Vec::new(); | ||
x.push(Rc::new(42)); | ||
|
||
let mut x : VVec<'static, 'a> = Vec::new(); | ||
x.push(y); | ||
|
||
let mut x : WVec<'static, & 'a i32> = Vec::new(); | ||
x.push(y); | ||
} | ||
|
||
fn main() { | ||
foo(&42); | ||
} |
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,18 @@ | ||
warning[E0122]: generic bounds are ignored in type aliases | ||
--> $DIR/param-bounds-ignored.rs:15:1 | ||
| | ||
15 | type SVec<T: Send> = Vec<T>; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
warning[E0122]: generic bounds are ignored in type aliases | ||
--> $DIR/param-bounds-ignored.rs:16:1 | ||
| | ||
16 | type VVec<'b, 'a: 'b> = Vec<&'a i32>; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
warning[E0122]: generic bounds are ignored in type aliases | ||
--> $DIR/param-bounds-ignored.rs:17:1 | ||
| | ||
17 | type WVec<'b, T: 'b> = Vec<T>; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|