aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/ty/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_hir/src/ty/tests.rs')
-rw-r--r--crates/ra_hir/src/ty/tests.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/ra_hir/src/ty/tests.rs b/crates/ra_hir/src/ty/tests.rs
index cb8d6351d..30da8fc23 100644
--- a/crates/ra_hir/src/ty/tests.rs
+++ b/crates/ra_hir/src/ty/tests.rs
@@ -215,6 +215,12 @@ impl S {
215 fn test2(self: &Self) { 215 fn test2(self: &Self) {
216 self; 216 self;
217 } 217 }
218 fn test3() -> Self {
219 S {}
220 }
221 fn test4() -> Self {
222 Self {}
223 }
218} 224}
219"#, 225"#,
220 ); 226 );