diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2016-08-18 06:12:21 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-18 06:12:21 +0300 |
| commit | 71759ec52c170eb8450fa28f0d1f5c33b47c52b2 (patch) | |
| tree | 4691268374a43cb7a3c6b53310171c5df1c8d4b7 /src/test | |
| parent | 5e9a5b3bd7a631b39391acd3d6bbf67118d510d2 (diff) | |
| parent | 6a1efbd08ed10595ba2a9ac942be23bfb84d977f (diff) | |
| download | rust-71759ec52c170eb8450fa28f0d1f5c33b47c52b2.tar.gz rust-71759ec52c170eb8450fa28f0d1f5c33b47c52b2.zip | |
Rollup merge of #35739 - circuitfox:E0403-update-error-format, r=jonathandturner
E0403 update error format Fixes #35696 Part of #35233 r? @jonathandturner Also did the bonus for this one.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/compile-fail/E0403.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/compile-fail/E0403.rs b/src/test/compile-fail/E0403.rs index 6a68013dc6f..cd8532fc4c3 100644 --- a/src/test/compile-fail/E0403.rs +++ b/src/test/compile-fail/E0403.rs @@ -9,6 +9,8 @@ // except according to those terms. fn foo<T, T>(s: T, u: T) {} //~ ERROR E0403 + //~| NOTE already used + //~| NOTE first use of `T` fn main() { } |
