File: self-param-semantic-fail.rs

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (64 lines) | stat: -rw-r--r-- 2,650 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// This test ensures that `self` is semantically rejected
// in contexts with `FnDecl` but outside of associated `fn`s.
// FIXME(Centril): For now closures are an exception.

fn main() {}

fn free() {
    fn f1(self) {}
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f2(mut self) {}
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f3(&self) {}
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f4(&mut self) {}
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f5<'a>(&'a self) {}
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f6<'a>(&'a mut self) {}
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f7(self: u8) {}
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f8(mut self: u8) {}
    //~^ ERROR `self` parameter is only allowed in associated functions
}

extern "C" {
    fn f1(self);
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f2(mut self);
    //~^ ERROR `self` parameter is only allowed in associated functions
    //~| ERROR patterns aren't allowed in
    fn f3(&self);
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f4(&mut self);
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f5<'a>(&'a self);
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f6<'a>(&'a mut self);
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f7(self: u8);
    //~^ ERROR `self` parameter is only allowed in associated functions
    fn f8(mut self: u8);
//~^ ERROR `self` parameter is only allowed in associated functions
//~| ERROR patterns aren't allowed in
}

type X1 = fn(self);
//~^ ERROR `self` parameter is only allowed in associated functions
type X2 = fn(mut self);
//~^ ERROR `self` parameter is only allowed in associated functions
//~| ERROR patterns aren't allowed in
type X3 = fn(&self);
//~^ ERROR `self` parameter is only allowed in associated functions
type X4 = fn(&mut self);
//~^ ERROR `self` parameter is only allowed in associated functions
type X5 = for<'a> fn(&'a self);
//~^ ERROR `self` parameter is only allowed in associated functions
type X6 = for<'a> fn(&'a mut self);
//~^ ERROR `self` parameter is only allowed in associated functions
type X7 = fn(self: u8);
//~^ ERROR `self` parameter is only allowed in associated functions
type X8 = fn(mut self: u8);
//~^ ERROR `self` parameter is only allowed in associated functions
//~| ERROR patterns aren't allowed in