aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/nameres/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/hir_def/src/nameres/tests.rs')
-rw-r--r--crates/hir_def/src/nameres/tests.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/crates/hir_def/src/nameres/tests.rs b/crates/hir_def/src/nameres/tests.rs
index 4f2e7a2f9..91c37a55d 100644
--- a/crates/hir_def/src/nameres/tests.rs
+++ b/crates/hir_def/src/nameres/tests.rs
@@ -411,6 +411,21 @@ struct Arc;
411} 411}
412 412
413#[test] 413#[test]
414fn extern_crate_self() {
415 check(
416 r#"
417//- /main.rs crate:main
418#[macro_use]
419extern crate self as bla;
420"#,
421 expect![[r#"
422 crate
423 bla: t
424 "#]],
425 );
426}
427
428#[test]
414fn reexport_across_crates() { 429fn reexport_across_crates() {
415 check( 430 check(
416 r#" 431 r#"