From 6f9ec0615c29a6c7b45bc0db675ce99d90d61eab Mon Sep 17 00:00:00 2001 From: Luke Gallagher Date: Tue, 7 Apr 2015 21:37:16 +1000 Subject: [PATCH] Add `ignore-tidy-linelength` and fix formatting --- src/test/compile-fail/issue-22560.rs | 5 +++-- 1 file 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() { }