Skip to content

Commit

Permalink
add test for #37765
Browse files Browse the repository at this point in the history
  • Loading branch information
durka authored Nov 14, 2016
1 parent 766f6e4 commit 8e70a50
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 8e70a50

Please sign in to comment.