Skip to content

Commit

Permalink
Fixed stderr files for ui tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Regueiro committed Dec 29, 2018
1 parent 5adf8c3 commit a4fa7ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
3 changes: 1 addition & 2 deletions src/test/ui/error-codes/E0110.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
type X = u32<'static>; //~ ERROR E0110

fn main() {
}
fn main() {}
8 changes: 0 additions & 8 deletions src/test/ui/error-codes/E0110.stderr
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
<<<<<<< HEAD
error[E0110]: lifetime arguments are not allowed on this entity
--> $DIR/E0110.rs:1:14
||||||| merged common ancestors
error[E0110]: lifetime parameters are not allowed on this type
--> $DIR/E0110.rs:11:14
=======
error[E0110]: lifetime arguments are not allowed on this entity
--> $DIR/E0110.rs:11:14
>>>>>>> Added regression test for using generic parameters on modules.
|
LL | type X = u32<'static>; //~ ERROR E0110
| ^^^^^^^ lifetime argument not allowed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ error[E0109]: type arguments are not allowed on this entity
LL | <<Self as Collection<T>>::Family as CollectionFamily>::Member<U>;
| ^ type argument not allowed

error[E0109]: type arguments are not allowed on this entity
error[E0110]: lifetime arguments are not allowed on this entity
--> $DIR/collections.rs:24:50
|
LL | fn iterate<'iter>(&'iter self) -> Self::Iter<'iter>;
| ^^^^^ lifetime argument not allowed

error[E0109]: type arguments are not allowed on this entity
error[E0110]: lifetime arguments are not allowed on this entity
--> $DIR/collections.rs:50:50
|
LL | fn iterate<'iter>(&'iter self) -> Self::Iter<'iter> {
Expand Down

0 comments on commit a4fa7ef

Please sign in to comment.