2016-11-14 11:35:37 -06:00
|
|
|
// 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.
|
|
|
|
|
2017-05-13 04:54:50 -05:00
|
|
|
// run-pass
|
|
|
|
|
2017-07-26 23:51:09 -05:00
|
|
|
#![warn(unused)]
|
|
|
|
|
2016-11-14 11:35:37 -06:00
|
|
|
// Parser test for #37765
|
|
|
|
|
2017-01-05 20:55:36 -06:00
|
|
|
fn with_parens<T: ToString>(arg: T) -> String { //~WARN function is never used: `with_parens`
|
|
|
|
return (<T as ToString>::to_string(&arg)); //~WARN unnecessary parentheses around `return` value
|
2016-11-14 11:35:37 -06:00
|
|
|
}
|
|
|
|
|
2017-01-05 20:55:36 -06:00
|
|
|
fn no_parens<T: ToString>(arg: T) -> String { //~WARN function is never used: `no_parens`
|
2016-11-14 11:35:37 -06:00
|
|
|
return <T as ToString>::to_string(&arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
|
|
|
}
|