diff options
author | Florian Diebold <[email protected]> | 2020-02-22 12:14:39 +0000 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2020-02-22 12:14:39 +0000 |
commit | 3e106c77ff76c39be49444165eac805d32666e41 (patch) | |
tree | 7f136356bb7edb610233a2821be0b755725ed03a /crates/ra_hir_ty/src/tests | |
parent | c2000257941956cd4c4365d6eb6cdbc1b16e929c (diff) |
Rework find_super_trait_path to protect against cycles
Diffstat (limited to 'crates/ra_hir_ty/src/tests')
-rw-r--r-- | crates/ra_hir_ty/src/tests/coercion.rs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/crates/ra_hir_ty/src/tests/coercion.rs b/crates/ra_hir_ty/src/tests/coercion.rs index 5594ed394..60ad6e9be 100644 --- a/crates/ra_hir_ty/src/tests/coercion.rs +++ b/crates/ra_hir_ty/src/tests/coercion.rs | |||
@@ -622,6 +622,44 @@ fn test() { | |||
622 | ); | 622 | ); |
623 | } | 623 | } |
624 | 624 | ||
625 | #[test] | ||
626 | fn coerce_unsize_super_trait_cycle() { | ||
627 | assert_snapshot!( | ||
628 | infer_with_mismatches(r#" | ||
629 | #[lang = "unsize"] | ||
630 | pub trait Unsize<T> {} | ||
631 | #[lang = "coerce_unsized"] | ||
632 | pub trait CoerceUnsized<T> {} | ||
633 | |||
634 | impl<T: Unsize<U>, U> CoerceUnsized<&U> for &T {} | ||
635 | |||
636 | trait A {} | ||
637 | trait B: C + A {} | ||
638 | trait C: B {} | ||
639 | trait D: C | ||
640 | |||
641 | struct S; | ||
642 | impl A for S {} | ||
643 | impl B for S {} | ||
644 | impl C for S {} | ||
645 | impl D for S {} | ||
646 | |||
647 | fn test() { | ||
648 | let obj: &dyn D = &S; | ||
649 | let obj: &dyn A = obj; | ||
650 | } | ||
651 | "#, true), | ||
652 | @r###" | ||
653 | [292; 348) '{ ...obj; }': () | ||
654 | [302; 305) 'obj': &dyn D | ||
655 | [316; 318) '&S': &S | ||
656 | [317; 318) 'S': S | ||
657 | [328; 331) 'obj': &dyn A | ||
658 | [342; 345) 'obj': &dyn D | ||
659 | "### | ||
660 | ); | ||
661 | } | ||
662 | |||
625 | #[ignore] | 663 | #[ignore] |
626 | #[test] | 664 | #[test] |
627 | fn coerce_unsize_generic() { | 665 | fn coerce_unsize_generic() { |