xref
: /
third_party
/
rust
/
crates
/
cxx
/
tests
/
ui
/
bad_explicit_impl.rs
(revision 33d722a9)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/rust/crates/cxx/tests/ui/
1
#[
cxx
::
bridge
]
2
mod
ffi
{
3
struct
S {
4
x:
u8
,
5
}
6
7
impl
fn
() -> &S {}
8
}
9
10
fn
main
() {}
11