Skip to content

Commit

Permalink
Make main public to accommodate check-fast
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Nov 9, 2013
1 parent b32845d commit a15196c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ fn use_<'a>(c: Contravariant<'a>) {
fn collapse<'b>(x: &'b int, c: Contravariant<'b>) { }
}

fn main() {}
pub fn main() {}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ fn use_<'a>(c: Covariant<'a>) {
let _: Covariant<'static> = c;
}

fn main() {}
pub fn main() {}

4 comments on commit a15196c

@bors
Copy link
Contributor

@bors bors commented on a15196c Nov 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from pnkfelix
at nikomatsakis@a15196c

@bors
Copy link
Contributor

@bors bors commented on a15196c Nov 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging nikomatsakis/rust/issue-4846-multiple-lifetime-parameters-7 = a15196c into auto

@bors
Copy link
Contributor

@bors bors commented on a15196c Nov 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nikomatsakis/rust/issue-4846-multiple-lifetime-parameters-7 = a15196c merged ok, testing candidate = c71617e1

@bors
Copy link
Contributor

@bors bors commented on a15196c Nov 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.