Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
mir
/
auxiliary
/
mir_external_refs.rs
blob: 9fd58f1d71437dbae40b5d58950a5f5a7217f961 [
file
] [
log
] [
blame
]
pub
struct
S
(
pub
u8
);
impl
S
{
pub
fn
hey
()
->
u8
{
24
}
}
pub
trait
X
{
fn
hoy
(&
self
)
->
u8
{
25
}
}
impl
X
for
S
{}
pub
enum
E
{
U
(
u8
)
}
pub
fn
regular_fn
()
->
u8
{
12
}