mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
67 lines
1.2 KiB
Rust
67 lines
1.2 KiB
Rust
// This test ensures that `self` is syntactically accepted in all places an `FnDecl` is parsed.
|
|
// FIXME(Centril): For now closures are an exception.
|
|
|
|
// check-pass
|
|
|
|
fn main() {}
|
|
|
|
#[cfg(FALSE)]
|
|
fn free() {
|
|
fn f(self) {}
|
|
fn f(mut self) {}
|
|
fn f(&self) {}
|
|
fn f(&mut self) {}
|
|
fn f(&'a self) {}
|
|
fn f(&'a mut self) {}
|
|
fn f(self: u8) {}
|
|
fn f(mut self: u8) {}
|
|
}
|
|
|
|
#[cfg(FALSE)]
|
|
extern "C" {
|
|
fn f(self);
|
|
fn f(mut self);
|
|
fn f(&self);
|
|
fn f(&mut self);
|
|
fn f(&'a self);
|
|
fn f(&'a mut self);
|
|
fn f(self: u8);
|
|
fn f(mut self: u8);
|
|
}
|
|
|
|
#[cfg(FALSE)]
|
|
trait X {
|
|
fn f(self) {}
|
|
fn f(mut self) {}
|
|
fn f(&self) {}
|
|
fn f(&mut self) {}
|
|
fn f(&'a self) {}
|
|
fn f(&'a mut self) {}
|
|
fn f(self: u8) {}
|
|
fn f(mut self: u8) {}
|
|
}
|
|
|
|
#[cfg(FALSE)]
|
|
impl X for Y {
|
|
fn f(self) {}
|
|
fn f(mut self) {}
|
|
fn f(&self) {}
|
|
fn f(&mut self) {}
|
|
fn f(&'a self) {}
|
|
fn f(&'a mut self) {}
|
|
fn f(self: u8) {}
|
|
fn f(mut self: u8) {}
|
|
}
|
|
|
|
#[cfg(FALSE)]
|
|
impl X for Y {
|
|
type X = fn(self);
|
|
type X = fn(mut self);
|
|
type X = fn(&self);
|
|
type X = fn(&mut self);
|
|
type X = fn(&'a self);
|
|
type X = fn(&'a mut self);
|
|
type X = fn(self: u8);
|
|
type X = fn(mut self: u8);
|
|
}
|