2015-04-28 23:53:33 +02:00
|
|
|
// Tests different fns
|
|
|
|
|
2015-11-20 03:11:32 +01:00
|
|
|
fn foo(a: AAAA, b: BBB, c: CCC) -> RetType {}
|
2015-04-28 23:53:33 +02:00
|
|
|
|
2016-01-11 06:06:06 +01:00
|
|
|
fn foo(a: AAAA, b: BBB /* some, weird, inline comment */, c: CCC) -> RetType where T: Blah {}
|
2015-04-28 23:53:33 +02:00
|
|
|
|
2016-01-11 06:06:06 +01:00
|
|
|
fn foo(a: AAA /* (comment) */) where T: Blah {}
|
2015-04-28 23:53:33 +02:00
|
|
|
|
|
|
|
fn foo(a: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,
|
|
|
|
b: BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)
|
|
|
|
-> RetType
|
|
|
|
where T: Blah
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn foo<U, T>(a: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,
|
|
|
|
b: BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)
|
|
|
|
-> RetType
|
|
|
|
where T: Blah,
|
|
|
|
U: dsfasdfasdfasd
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-11-20 03:11:32 +01:00
|
|
|
fn foo<U: Fn(A) -> B /* paren inside generics */>() {}
|
2015-07-02 01:20:07 +02:00
|
|
|
|
2015-04-28 23:53:33 +02:00
|
|
|
impl Foo {
|
2016-01-11 06:06:06 +01:00
|
|
|
fn with_no_errors<T, F>(&mut self, f: F) -> T where F: FnOnce(&mut Resolver) -> T {}
|
2015-05-01 13:08:22 +02:00
|
|
|
|
2015-11-20 03:11:32 +01:00
|
|
|
fn foo(mut self, mut bar: u32) {}
|
2015-05-01 13:08:22 +02:00
|
|
|
|
2015-11-20 03:11:32 +01:00
|
|
|
fn bar(self, mut bazz: u32) {}
|
2015-04-28 23:53:33 +02:00
|
|
|
}
|
2015-04-29 06:44:29 +02:00
|
|
|
|
2015-05-01 04:52:11 +02:00
|
|
|
pub fn render<'a,
|
|
|
|
N: Clone + 'a,
|
|
|
|
E: Clone + 'a,
|
|
|
|
G: Labeller<'a, N, E> + GraphWalk<'a, N, E>,
|
|
|
|
W: Write>
|
2015-04-29 06:44:29 +02:00
|
|
|
(g: &'a G,
|
|
|
|
w: &mut W)
|
|
|
|
-> io::Result<()> {
|
|
|
|
render_opts(g, w, &[])
|
|
|
|
}
|
2015-05-17 13:35:11 +02:00
|
|
|
|
2015-05-25 13:25:06 +02:00
|
|
|
const fn foo() {
|
|
|
|
x;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const fn foo() {
|
|
|
|
x;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
const fn foo() {
|
|
|
|
x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 03:11:32 +01:00
|
|
|
fn homura<T: Deref<Target = i32>>(_: T) {}
|
2015-09-15 01:40:04 +02:00
|
|
|
|
2015-11-20 03:11:32 +01:00
|
|
|
fn issue377() -> (Box<CompositorProxy + Send>, Box<CompositorReceiver>) {}
|
2015-09-27 22:32:07 +02:00
|
|
|
|
2015-05-17 13:35:11 +02:00
|
|
|
fn main() {
|
|
|
|
let _ = function(move || 5);
|
|
|
|
let _ = move || 42;
|
2015-09-15 07:45:54 +02:00
|
|
|
let _ = || unsafe { abort() };
|
2015-05-17 13:35:11 +02:00
|
|
|
}
|
2015-10-08 06:20:19 +02:00
|
|
|
|
|
|
|
// With inner attributes.
|
|
|
|
fn inner() {
|
|
|
|
#![inline]
|
|
|
|
x
|
|
|
|
}
|
2015-11-30 23:12:50 +01:00
|
|
|
|
|
|
|
#[cfg_attr(rustfmt, rustfmt_skip)]
|
|
|
|
fn foo(a: i32) -> i32 {
|
|
|
|
// comment
|
|
|
|
if a > 0 { 1 } else { 2 }
|
|
|
|
}
|
2015-12-12 15:41:10 +01:00
|
|
|
|
|
|
|
fn ______________________baz(a: i32)
|
|
|
|
->
|
|
|
|
*mut ::std::option::Option<extern "C" fn(arg1: i32,
|
|
|
|
_____________________a: i32,
|
|
|
|
arg3: i32)
|
|
|
|
-> ()> {
|
|
|
|
}
|