summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0390.stderr
blob: ec4b5758c5b786f1d2977a55748766cdf12af84d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0390]: cannot define inherent `impl` for primitive types
  --> $DIR/E0390.rs:5:1
   |
LL | impl *mut Foo {}
   | ^^^^^^^^^^^^^
   |
   = help: consider using an extension trait instead

error[E0390]: cannot define inherent `impl` for primitive types
  --> $DIR/E0390.rs:7:1
   |
LL | impl fn(Foo) {}
   | ^^^^^^^^^^^^
   |
   = help: consider using an extension trait instead

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0390`.