Skip to content

Commit 4df76f0

Browse files
committed
Rename to intra_doc_resolution_failures
1 parent da0b10c commit 4df76f0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+83
-89
lines changed

src/doc/rustdoc/src/lints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ can use them like any other lints by doing this:
1111

1212
Here is the list of the lints provided by `rustdoc`:
1313

14-
## intra_doc_link_resolution_failures
14+
## intra_doc_resolution_failures
1515

1616
This lint **warns by default** and is **nightly-only**. This lint detects when
1717
an intra-doc link fails to get resolved. For example:

src/librustc_lint/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ use rustc_middle::ty::query::Providers;
6262
use rustc_middle::ty::TyCtxt;
6363
use rustc_session::lint::builtin::{
6464
BARE_TRAIT_OBJECTS, ELIDED_LIFETIMES_IN_PATHS, EXPLICIT_OUTLIVES_REQUIREMENTS,
65-
INTRA_DOC_LINK_RESOLUTION_FAILURES, INVALID_CODEBLOCK_ATTRIBUTES, MISSING_DOC_CODE_EXAMPLES,
65+
INTRA_DOC_RESOLUTION_FAILURES, INVALID_CODEBLOCK_ATTRIBUTES, MISSING_DOC_CODE_EXAMPLES,
6666
PRIVATE_DOC_TESTS,
6767
};
6868
use rustc_span::symbol::{Ident, Symbol};
@@ -303,7 +303,7 @@ fn register_builtins(store: &mut LintStore, no_interleave_lints: bool) {
303303

304304
add_lint_group!(
305305
"rustdoc",
306-
INTRA_DOC_LINK_RESOLUTION_FAILURES,
306+
INTRA_DOC_RESOLUTION_FAILURES,
307307
INVALID_CODEBLOCK_ATTRIBUTES,
308308
MISSING_DOC_CODE_EXAMPLES,
309309
PRIVATE_DOC_TESTS
@@ -318,7 +318,7 @@ fn register_builtins(store: &mut LintStore, no_interleave_lints: bool) {
318318
store.register_renamed("async_idents", "keyword_idents");
319319
store.register_renamed("exceeding_bitshifts", "arithmetic_overflow");
320320
store.register_renamed("redundant_semicolon", "redundant_semicolons");
321-
store.register_renamed("intra_doc_link_resolution_failure", "intra_doc_link_resolution_failures");
321+
store.register_renamed("intra_doc_link_resolution_failure", "intra_doc_resolution_failures");
322322
store.register_removed("unknown_features", "replaced by an error");
323323
store.register_removed("unsigned_negation", "replaced by negate_unsigned feature gate");
324324
store.register_removed("negate_unsigned", "cast a signed value instead");

src/librustc_session/lint/builtin.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ declare_lint! {
398398
}
399399

400400
declare_lint! {
401-
pub INTRA_DOC_LINK_RESOLUTION_FAILURES,
401+
pub INTRA_DOC_RESOLUTION_FAILURES,
402402
Warn,
403403
"failures in resolving intra-doc link targets"
404404
}
@@ -601,7 +601,7 @@ declare_lint_pass! {
601601
ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
602602
UNSTABLE_NAME_COLLISIONS,
603603
IRREFUTABLE_LET_PATTERNS,
604-
INTRA_DOC_LINK_RESOLUTION_FAILURES,
604+
INTRA_DOC_RESOLUTION_FAILURES,
605605
INVALID_CODEBLOCK_ATTRIBUTES,
606606
MISSING_CRATE_LEVEL_DOCS,
607607
MISSING_DOC_CODE_EXAMPLES,

src/librustdoc/core.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ pub fn run_core(options: RustdocOptions) -> (clean::Crate, RenderInfo, RenderOpt
315315
let cpath = Some(input.clone());
316316
let input = Input::File(input);
317317

318-
let intra_link_resolution_failure_name = lint::builtin::INTRA_DOC_LINK_RESOLUTION_FAILURES.name;
318+
let intra_link_resolution_failure_name = lint::builtin::INTRA_DOC_RESOLUTION_FAILURES.name;
319319
let missing_docs = rustc_lint::builtin::MISSING_DOCS.name;
320320
let missing_doc_example = rustc_lint::builtin::MISSING_DOC_CODE_EXAMPLES.name;
321321
let private_doc_tests = rustc_lint::builtin::PRIVATE_DOC_TESTS.name;

src/librustdoc/passes/collect_intra_doc_links.rs

Lines changed: 30 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -867,46 +867,40 @@ fn report_diagnostic(
867867
let attrs = &item.attrs;
868868
let sp = span_of_attrs(attrs).unwrap_or(item.source.span());
869869

870-
cx.tcx.struct_span_lint_hir(
871-
lint::builtin::INTRA_DOC_LINK_RESOLUTION_FAILURES,
872-
hir_id,
873-
sp,
874-
|lint| {
875-
let mut diag = lint.build(msg);
876-
877-
let span = link_range
878-
.as_ref()
879-
.and_then(|range| super::source_span_for_markdown_range(cx, dox, range, attrs));
880-
881-
if let Some(link_range) = link_range {
882-
if let Some(sp) = span {
883-
diag.set_span(sp);
884-
} else {
885-
// blah blah blah\nblah\nblah [blah] blah blah\nblah blah
886-
// ^ ~~~~
887-
// | link_range
888-
// last_new_line_offset
889-
let last_new_line_offset =
890-
dox[..link_range.start].rfind('\n').map_or(0, |n| n + 1);
891-
let line = dox[last_new_line_offset..].lines().next().unwrap_or("");
892-
893-
// Print the line containing the `link_range` and manually mark it with '^'s.
894-
diag.note(&format!(
895-
"the link appears in this line:\n\n{line}\n\
870+
cx.tcx.struct_span_lint_hir(lint::builtin::INTRA_DOC_RESOLUTION_FAILURES, hir_id, sp, |lint| {
871+
let mut diag = lint.build(msg);
872+
873+
let span = link_range
874+
.as_ref()
875+
.and_then(|range| super::source_span_for_markdown_range(cx, dox, range, attrs));
876+
877+
if let Some(link_range) = link_range {
878+
if let Some(sp) = span {
879+
diag.set_span(sp);
880+
} else {
881+
// blah blah blah\nblah\nblah [blah] blah blah\nblah blah
882+
// ^ ~~~~
883+
// | link_range
884+
// last_new_line_offset
885+
let last_new_line_offset = dox[..link_range.start].rfind('\n').map_or(0, |n| n + 1);
886+
let line = dox[last_new_line_offset..].lines().next().unwrap_or("");
887+
888+
// Print the line containing the `link_range` and manually mark it with '^'s.
889+
diag.note(&format!(
890+
"the link appears in this line:\n\n{line}\n\
896891
{indicator: <before$}{indicator:^<found$}",
897-
line = line,
898-
indicator = "",
899-
before = link_range.start - last_new_line_offset,
900-
found = link_range.len(),
901-
));
902-
}
892+
line = line,
893+
indicator = "",
894+
before = link_range.start - last_new_line_offset,
895+
found = link_range.len(),
896+
));
903897
}
898+
}
904899

905-
decorate(&mut diag, span);
900+
decorate(&mut diag, span);
906901

907-
diag.emit();
908-
},
909-
);
902+
diag.emit();
903+
});
910904
}
911905

912906
fn resolution_failure(

src/test/run-make-fulldeps/exit-code/lint-failure.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![deny(intra_doc_link_resolution_failures)]
1+
#![deny(intra_doc_resolution_failures)]
22

33
/// [intradoc::failure]
44
pub fn main() {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![deny(intra_doc_link_resolution_failures)]
1+
#![deny(intra_doc_resolution_failures)]
22

33
/// [v2] //~ ERROR
44
pub fn foo() {}

src/test/rustdoc-ui/deny-intra-link-resolution-failure.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LL | /// [v2]
77
note: the lint level is defined here
88
--> $DIR/deny-intra-link-resolution-failure.rs:1:9
99
|
10-
LL | #![deny(intra_doc_link_resolution_failures)]
10+
LL | #![deny(intra_doc_resolution_failures)]
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1212
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
1313

src/test/rustdoc-ui/intra-doc-alias-ice.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![deny(intra_doc_link_resolution_failures)]
1+
#![deny(intra_doc_resolution_failures)]
22

33
pub type TypeAlias = usize;
44

src/test/rustdoc-ui/intra-doc-alias-ice.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LL | /// [broken cross-reference](TypeAlias::hoge)
77
note: the lint level is defined here
88
--> $DIR/intra-doc-alias-ice.rs:1:9
99
|
10-
LL | #![deny(intra_doc_link_resolution_failures)]
10+
LL | #![deny(intra_doc_resolution_failures)]
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1212
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
1313

src/test/rustdoc-ui/intra-link-span-ice-55723.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![deny(intra_doc_link_resolution_failures)]
1+
#![deny(intra_doc_resolution_failures)]
22

33
// An error in calculating spans while reporting intra-doc link resolution errors caused rustdoc to
44
// attempt to slice in the middle of a multibyte character. See

src/test/rustdoc-ui/intra-link-span-ice-55723.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LL | /// (arr[i])
77
note: the lint level is defined here
88
--> $DIR/intra-link-span-ice-55723.rs:1:9
99
|
10-
LL | #![deny(intra_doc_link_resolution_failures)]
10+
LL | #![deny(intra_doc_resolution_failures)]
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1212
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
1313

src/test/rustdoc-ui/intra-links-ambiguity.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![deny(intra_doc_link_resolution_failures)]
1+
#![deny(intra_doc_resolution_failures)]
22
#![allow(non_camel_case_types)]
33
#![allow(non_upper_case_globals)]
44

src/test/rustdoc-ui/intra-links-ambiguity.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LL | /// [`ambiguous`] is ambiguous.
77
note: the lint level is defined here
88
--> $DIR/intra-links-ambiguity.rs:1:9
99
|
10-
LL | #![deny(intra_doc_link_resolution_failures)]
10+
LL | #![deny(intra_doc_resolution_failures)]
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1212
help: to link to the struct, prefix with the item type
1313
|

src/test/rustdoc-ui/intra-links-anchors.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![deny(intra_doc_link_resolution_failures)]
1+
#![deny(intra_doc_resolution_failures)]
22

33
// A few tests on anchors.
44

src/test/rustdoc-ui/intra-links-anchors.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LL | /// Or maybe [Foo::f#hola].
77
note: the lint level is defined here
88
--> $DIR/intra-links-anchors.rs:1:9
99
|
10-
LL | #![deny(intra_doc_link_resolution_failures)]
10+
LL | #![deny(intra_doc_resolution_failures)]
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1212

1313
error: `hello#people#!` contains multiple anchors

src/test/rustdoc-ui/intra-links-private.private.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ warning: public documentation for `DocMe` links to private item `DontDocMe`
44
LL | /// docs [DontDocMe]
55
| ^^^^^^^^^ this item is private
66
|
7-
= note: `#[warn(intra_doc_link_resolution_failures)]` on by default
7+
= note: `#[warn(intra_doc_resolution_failures)]` on by default
88
= note: this link resolves only because you passed `--document-private-items`, but will break without
99

1010
warning: 1 warning emitted

src/test/rustdoc-ui/intra-links-private.public.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ warning: public documentation for `DocMe` links to private item `DontDocMe`
44
LL | /// docs [DontDocMe]
55
| ^^^^^^^^^ this item is private
66
|
7-
= note: `#[warn(intra_doc_link_resolution_failures)]` on by default
7+
= note: `#[warn(intra_doc_resolution_failures)]` on by default
88
= note: this link will resolve properly if you pass `--document-private-items`
99

1010
warning: 1 warning emitted

src/test/rustdoc-ui/intra-links-warning-crlf.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ warning: unresolved link to `error`
44
LL | /// [error]
55
| ^^^^^ unresolved link
66
|
7-
= note: `#[warn(intra_doc_link_resolution_failures)]` on by default
7+
= note: `#[warn(intra_doc_resolution_failures)]` on by default
88
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
99

1010
warning: unresolved link to `error1`

src/test/rustdoc-ui/intra-links-warning.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ warning: unresolved link to `Foo::baz`
44
LL | //! Test with [Foo::baz], [Bar::foo], ...
55
| ^^^^^^^^ unresolved link
66
|
7-
= note: `#[warn(intra_doc_link_resolution_failures)]` on by default
7+
= note: `#[warn(intra_doc_resolution_failures)]` on by default
88
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
99

1010
warning: unresolved link to `Bar::foo`

src/test/rustdoc-ui/issue-74134.private.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ warning: public documentation for `public_item` links to private item `PrivateTy
44
LL | /// [`PrivateType`]
55
| ^^^^^^^^^^^^^ this item is private
66
|
7-
= note: `#[warn(intra_doc_link_resolution_failures)]` on by default
7+
= note: `#[warn(intra_doc_resolution_failures)]` on by default
88
= note: this link resolves only because you passed `--document-private-items`, but will break without
99

1010
warning: 1 warning emitted

src/test/rustdoc-ui/issue-74134.public.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ warning: public documentation for `public_item` links to private item `PrivateTy
44
LL | /// [`PrivateType`]
55
| ^^^^^^^^^^^^^ this item is private
66
|
7-
= note: `#[warn(intra_doc_link_resolution_failures)]` on by default
7+
= note: `#[warn(intra_doc_resolution_failures)]` on by default
88
= note: this link will resolve properly if you pass `--document-private-items`
99

1010
warning: 1 warning emitted

src/test/rustdoc-ui/lint-group.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ note: the lint level is defined here
3939
|
4040
LL | #![deny(rustdoc)]
4141
| ^^^^^^^
42-
= note: `#[deny(intra_doc_link_resolution_failures)]` implied by `#[deny(rustdoc)]`
42+
= note: `#[deny(intra_doc_resolution_failures)]` implied by `#[deny(rustdoc)]`
4343
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
4444

4545
error: aborting due to 3 previous errors

src/test/rustdoc-ui/reference-link-has-one-warning.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ warning: `[with#anchor#error]` has an issue with the link anchor.
44
LL | /// docs [label][with#anchor#error]
55
| ^^^^^^^^^^^^^^^^^ only one `#` is allowed in a link
66
|
7-
= note: `#[warn(intra_doc_link_resolution_failures)]` on by default
7+
= note: `#[warn(intra_doc_resolution_failures)]` on by default
88

99
warning: 1 warning emitted
1010

src/test/rustdoc/intra-doc-crate/additional_doc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// aux-build:additional_doc.rs
22
// build-aux-docs
3-
#![deny(intra_doc_link_resolution_failures)]
3+
#![deny(intra_doc_resolution_failures)]
44

55
extern crate my_rand;
66

src/test/rustdoc/intra-doc-crate/auxiliary/additional_doc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![crate_name = "my_rand"]
2-
#![deny(intra_doc_link_resolution_failures)]
2+
#![deny(intra_doc_resolution_failures)]
33

44
pub trait RngCore {}
55
/// Rng extends [`RngCore`].

src/test/rustdoc/intra-doc-crate/auxiliary/hidden.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![crate_name = "hidden_dep"]
2-
#![deny(intra_doc_link_resolution_failures)]
2+
#![deny(intra_doc_resolution_failures)]
33

44
#[doc(hidden)]
55
pub mod __reexport {

src/test/rustdoc/intra-doc-crate/auxiliary/intra-doc-basic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![crate_name = "a"]
2-
#![deny(intra_doc_link_resolution_failures)]
2+
#![deny(intra_doc_resolution_failures)]
33

44
pub struct Foo;
55

src/test/rustdoc/intra-doc-crate/auxiliary/macro_inner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![crate_name = "macro_inner"]
2-
#![deny(intra_doc_link_resolution_failures)]
2+
#![deny(intra_doc_resolution_failures)]
33

44
pub struct Foo;
55

src/test/rustdoc/intra-doc-crate/auxiliary/module.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![crate_name = "module_inner"]
2-
#![deny(intra_doc_link_resolution_failures)]
2+
#![deny(intra_doc_resolution_failures)]
33
/// [SomeType] links to [bar]
44
pub struct SomeType;
55
pub trait SomeTrait {}

src/test/rustdoc/intra-doc-crate/auxiliary/submodule-inner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![crate_name = "a"]
2-
#![deny(intra_doc_link_resolution_failures)]
2+
#![deny(intra_doc_resolution_failures)]
33

44
pub mod bar {
55
pub struct Bar;

src/test/rustdoc/intra-doc-crate/auxiliary/submodule-outer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![crate_name = "bar"]
2-
#![deny(intra_doc_link_resolution_failures)]
2+
#![deny(intra_doc_resolution_failures)]
33

44
pub trait Foo {
55
/// [`Bar`] [`Baz`]

src/test/rustdoc/intra-doc-crate/basic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// aux-build:intra-doc-basic.rs
22
// build-aux-docs
3-
#![deny(intra_doc_link_resolution_failures)]
3+
#![deny(intra_doc_resolution_failures)]
44

55
// from https://github.com/rust-lang/rust/issues/65983
66
extern crate a;

src/test/rustdoc/intra-doc-crate/hidden.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// aux-build:hidden.rs
22
// build-aux-docs
3-
#![deny(intra_doc_link_resolution_failures)]
3+
#![deny(intra_doc_resolution_failures)]
44

55
// tests https://github.com/rust-lang/rust/issues/73363
66

src/test/rustdoc/intra-doc-crate/macro.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// aux-build:macro_inner.rs
33
// aux-build:proc_macro.rs
44
// build-aux-docs
5-
#![deny(intra_doc_link_resolution_failures)]
5+
#![deny(intra_doc_resolution_failures)]
66
extern crate macro_inner;
77
extern crate proc_macro_inner;
88

src/test/rustdoc/intra-doc-crate/module.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// outer.rs
22
// aux-build: module.rs
33
// build-aux-docs
4-
#![deny(intra_doc_link_resolution_failures)]
4+
#![deny(intra_doc_resolution_failures)]
55
extern crate module_inner;
66
// @has 'module/bar/index.html' '//a[@href="../../module_inner/trait.SomeTrait.html"]' 'SomeTrait'
77
// @has 'module/bar/index.html' '//a[@href="../../module_inner/struct.SomeType.html"]' 'SomeType'

src/test/rustdoc/intra-doc-crate/submodule-inner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// aux-build:submodule-inner.rs
22
// build-aux-docs
3-
#![deny(intra_doc_link_resolution_failures)]
3+
#![deny(intra_doc_resolution_failures)]
44

55
extern crate a;
66

src/test/rustdoc/intra-doc-crate/submodule-outer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// aux-build:submodule-outer.rs
22
// edition:2018
3-
#![deny(intra_doc_link_resolution_failures)]
3+
#![deny(intra_doc_resolution_failures)]
44

55
extern crate bar as bar_;
66

0 commit comments

Comments
 (0)