diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2021-05-10 12:18:55 +0200 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2022-06-21 23:56:17 +0200 |
| commit | 86290effd511d9cd8b6339704a85495552c66c90 (patch) | |
| tree | f4dc8add8d8ea6e1dd4f3f1d1c5ccf8673ce0598 /src | |
| parent | 42289ff931334f5f82cec0b3e0252ce326ca165c (diff) | |
| download | rust-86290effd511d9cd8b6339704a85495552c66c90.tar.gz rust-86290effd511d9cd8b6339704a85495552c66c90.zip | |
Perform wf checking per module.
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/ui/issues/issue-20413.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/ui/issues/issue-20413.rs b/src/test/ui/issues/issue-20413.rs index 01a3b7913bb..138a235e675 100644 --- a/src/test/ui/issues/issue-20413.rs +++ b/src/test/ui/issues/issue-20413.rs @@ -1,5 +1,5 @@ trait Foo { - fn answer(self); + fn answer(self); } struct NoData<T>; @@ -13,11 +13,11 @@ impl<T> Foo for T where NoData<T>: Foo { } trait Bar { - fn answer(self); + fn answer(self); } trait Baz { - fn answer(self); + fn answer(self); } struct AlmostNoData<T>(Option<T>); |
