Skip to content

Commit

Permalink
Rollup merge of rust-lang#37772 - durka:patch-32, r=petrochenkov
Browse files Browse the repository at this point in the history
add test for rust-lang#37765

Adds a test for rust-lang#37765, a path parsing fix which removes the need for a parenthesis workaround.

Closes rust-lang#37765.
cc rust-lang#37290 @withoutboats
r? @petrochenkov
  • Loading branch information
GuillaumeGomez authored Nov 17, 2016
2 parents e439603 + 8e70a50 commit 856131d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/test/run-pass/path-lookahead.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Copyright 2016 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.

// Parser test for #37765

fn with_parens<T: ToString>(arg: T) -> String { //~WARN dead_code
return (<T as ToString>::to_string(&arg)); //~WARN unused_parens
}

fn no_parens<T: ToString>(arg: T) -> String { //~WARN dead_code
return <T as ToString>::to_string(&arg);
}

fn main() {

}

0 comments on commit 856131d

Please sign in to comment.