Symbols
mod foo {
pub const A = 1mm;
}
fn foo() -> Length { // error: Ambiguous identifiers
foo::A
}
foo();
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
mod foo {
pub const A = 1mm;
}
fn foo() -> Length { // error: Ambiguous identifiers
foo::A
}
foo();