File: nonlocal_rust_type.stderr

package info (click to toggle)
rust-cxx 1.0.141-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,632 kB
  • sloc: cpp: 1,573; javascript: 124; sh: 11; makefile: 8
file content (23 lines) | stat: -rw-r--r-- 1,151 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0117]: only traits defined in the current crate can be implemented for types defined outside of the crate
  --> tests/ui/nonlocal_rust_type.rs:10:9
   |
10 |         type OptBuilder<'a>;
   |         ^^^^^--------------
   |              |
   |              `Option` is not defined in the current crate
   |
   = note: impl doesn't have any local type before any uncovered type parameters
   = note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
   = note: define and implement a trait or new type instead

error[E0117]: only traits defined in the current crate can be implemented for types defined outside of the crate
  --> tests/ui/nonlocal_rust_type.rs:14:13
   |
14 |         rs: Box<OptBuilder<'a>>,
   |             ^^^^--------------
   |                 |
   |                 `Option` is not defined in the current crate
   |
   = note: impl doesn't have any local type before any uncovered type parameters
   = note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
   = note: define and implement a trait or new type instead