-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow where clauses involving types which don't include a type parame…
…ter. There isn't any semantic reason to disallow a `where` clause based on the fact that it doesn't contain a type parameter.
- Loading branch information
1 parent
9f227ca
commit db9e395
Showing
2 changed files
with
36 additions
and
46 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
36 changes: 36 additions & 0 deletions
36
src/test/compile-fail/where-clause-lifetimes-in-concrete-types.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,36 @@ | ||
// Copyright 2015 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(rustc_attrs)] | ||
|
||
use std::cmp::PartialEq; | ||
|
||
struct Input<'a> { | ||
_bytes: &'a [u8], | ||
} | ||
|
||
impl <'a> PartialEq for Input<'a> { | ||
fn eq(&self, _other: &Input<'a>) -> bool { | ||
panic!() | ||
} | ||
} | ||
|
||
struct Input2<'a> { | ||
i: Input<'a> | ||
} | ||
|
||
impl<'a, 'b> PartialEq<Input2<'b>> for Input2<'a> where Input<'a> : PartialEq<Input<'b>> { | ||
fn eq(&self, other: &Input2<'b>) -> bool { | ||
self.i == other.i | ||
} | ||
} | ||
|
||
#[rustc_error] | ||
fn main() { } //~ ERROR compilation successful |