diff options
| author | Luke Gallagher <luke@hypergeometric.net> | 2015-04-07 21:37:16 +1000 |
|---|---|---|
| committer | Luke Gallagher <luke@hypergeometric.net> | 2015-04-07 21:43:12 +1000 |
| commit | 6f9ec0615c29a6c7b45bc0db675ce99d90d61eab (patch) | |
| tree | 5d87c0030630fdfcf9ceae6270d5a367ebf4f5ce | |
| parent | 7eb723d794312c03c0c49d1ddf4875dacc86eb83 (diff) | |
| download | rust-6f9ec0615c29a6c7b45bc0db675ce99d90d61eab.tar.gz rust-6f9ec0615c29a6c7b45bc0db675ce99d90d61eab.zip | |
Add `ignore-tidy-linelength` and fix formatting
| -rw-r--r-- | src/test/compile-fail/issue-22560.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/compile-fail/issue-22560.rs b/src/test/compile-fail/issue-22560.rs index d7a71213a3f..b458e10a89c 100644 --- a/src/test/compile-fail/issue-22560.rs +++ b/src/test/compile-fail/issue-22560.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// ignore-tidy-linelength + use std::ops::{Add, Sub}; type Test = Add + @@ -15,5 +17,4 @@ type Test = Add + Sub; //~^ ERROR only the builtin traits can be used as closure or object bounds -fn main() { -} +fn main() { } |
