aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_ty
diff options
context:
space:
mode:
authorFlorian Diebold <[email protected]>2020-07-12 18:59:43 +0100
committerFlorian Diebold <[email protected]>2020-07-12 19:20:31 +0100
commitd885f38011b6d4265b527744234b3c317fe86501 (patch)
treec4bd56eaa24b25db28d8f213bae39c3b47703c46 /crates/ra_hir_ty
parentc6f53aaaa4d640cff809bba11af80051f29c6be5 (diff)
Remove some unnecessary file names
Diffstat (limited to 'crates/ra_hir_ty')
-rw-r--r--crates/ra_hir_ty/src/tests/traits.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/ra_hir_ty/src/tests/traits.rs b/crates/ra_hir_ty/src/tests/traits.rs
index 05a56215f..27737fa94 100644
--- a/crates/ra_hir_ty/src/tests/traits.rs
+++ b/crates/ra_hir_ty/src/tests/traits.rs
@@ -1995,7 +1995,6 @@ fn test() {
1995fn fn_item_fn_trait() { 1995fn fn_item_fn_trait() {
1996 check_types( 1996 check_types(
1997 r#" 1997 r#"
1998//- /main.rs
1999#[lang = "fn_once"] 1998#[lang = "fn_once"]
2000trait FnOnce<Args> { 1999trait FnOnce<Args> {
2001 type Output; 2000 type Output;
@@ -3025,7 +3024,6 @@ fn infer_box_fn_arg() {
3025fn infer_dyn_fn_output() { 3024fn infer_dyn_fn_output() {
3026 check_types( 3025 check_types(
3027 r#" 3026 r#"
3028//- /lib.rs
3029#[lang = "fn_once"] 3027#[lang = "fn_once"]
3030pub trait FnOnce<Args> { 3028pub trait FnOnce<Args> {
3031 type Output; 3029 type Output;
@@ -3049,7 +3047,6 @@ fn foo() {
3049fn infer_dyn_fn_once_output() { 3047fn infer_dyn_fn_once_output() {
3050 check_types( 3048 check_types(
3051 r#" 3049 r#"
3052//- /lib.rs
3053#[lang = "fn_once"] 3050#[lang = "fn_once"]
3054pub trait FnOnce<Args> { 3051pub trait FnOnce<Args> {
3055 type Output; 3052 type Output;