diff --git a/crates/ra_hir/src/ty/snapshots/tests__infer_self.snap b/crates/ra_hir/src/ty/snapshots/tests__infer_self.snap index 84c8b1e908..5c927f5c11 100644 --- a/crates/ra_hir/src/ty/snapshots/tests__infer_self.snap +++ b/crates/ra_hir/src/ty/snapshots/tests__infer_self.snap @@ -1,8 +1,8 @@ --- -created: "2019-01-22T14:45:00.052694700+00:00" -creator: insta@0.4.0 +created: "2019-02-04T19:40:48.826936500+00:00" +creator: insta@0.5.3 expression: "&result" -source: "crates\\ra_hir\\src\\ty\\tests.rs" +source: crates/ra_hir/src/ty/tests.rs --- [34; 38) 'self': &S [40; 61) '{ ... }': () @@ -10,4 +10,8 @@ source: "crates\\ra_hir\\src\\ty\\tests.rs" [75; 79) 'self': &S [88; 109) '{ ... }': () [98; 102) 'self': &S +[133; 153) '{ ... }': S +[143; 147) 'S {}': S +[177; 200) '{ ... }': S +[187; 194) 'Self {}': S diff --git a/crates/ra_hir/src/ty/tests.rs b/crates/ra_hir/src/ty/tests.rs index cb8d6351d9..30da8fc230 100644 --- a/crates/ra_hir/src/ty/tests.rs +++ b/crates/ra_hir/src/ty/tests.rs @@ -215,6 +215,12 @@ impl S { fn test2(self: &Self) { self; } + fn test3() -> Self { + S {} + } + fn test4() -> Self { + Self {} + } } "#, );