diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-11-27 18:27:45 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-11-27 18:27:45 +0000 |
commit | 4946169a96f3d442f463724af481fdb760381ccb (patch) | |
tree | b68c3da4bb47e0a285968319bfb33b44cbfd5546 /crates/ra_hir_ty/src/marks.rs | |
parent | 2798beeeb05ab0e71773a2ed51b7b0c90bf6b06a (diff) | |
parent | 47ec2ceb12df756b3482ddd2b1947e4b38f23706 (diff) |
Merge #2429
2429: Move type inference to a separate crate r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_hir_ty/src/marks.rs')
-rw-r--r-- | crates/ra_hir_ty/src/marks.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crates/ra_hir_ty/src/marks.rs b/crates/ra_hir_ty/src/marks.rs new file mode 100644 index 000000000..0f754eb9c --- /dev/null +++ b/crates/ra_hir_ty/src/marks.rs | |||
@@ -0,0 +1,9 @@ | |||
1 | //! See test_utils/src/marks.rs | ||
2 | |||
3 | test_utils::marks!( | ||
4 | type_var_cycles_resolve_completely | ||
5 | type_var_cycles_resolve_as_possible | ||
6 | type_var_resolves_to_int_var | ||
7 | match_ergonomics_ref | ||
8 | coerce_merge_fail_fallback | ||
9 | ); | ||