Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-privacy-xc-1.rs
blob: 1a2af8098f59e9ecc8cdfd34b971bd5432cdc030 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ aux-build:impl_privacy_xc_1.rs
//@ pretty-expanded FIXME #23616
extern
crate impl_privacy_xc_1
;
pub
fn
main
()
{
let
fish
=
impl_privacy_xc_1
::
Fish
{
x
:
1
};
fish
.
swim
();
}