Sign in
rust
/
rust-by-example
/
refs/heads/macros
/
.
/
examples
/
crates
/
link
/
executable.rs
blob: 42c83c39f567aa52350054355b02f3f5f5a46d17 [
file
] [
log
] [
blame
]
// Link to `liberty`, import items under the `erty` module
extern
crate erty
;
fn
main
()
{
erty
::
public_function
();
// Error! `private_function` is private
//erty::private_function();
erty
::
indirect_access
();
}