diff options
Diffstat (limited to 'src/test/ui/parser/bounds-obj-parens.rs')
| -rw-r--r-- | src/test/ui/parser/bounds-obj-parens.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/ui/parser/bounds-obj-parens.rs b/src/test/ui/parser/bounds-obj-parens.rs index e855231969b..cc86879bf46 100644 --- a/src/test/ui/parser/bounds-obj-parens.rs +++ b/src/test/ui/parser/bounds-obj-parens.rs @@ -1,4 +1,5 @@ // compile-pass -// compile-flags: -Z parse-only -type A = Box<(Fn(D::Error) -> E) + 'static + Send + Sync>; // OK (but see #39318) +type A = Box<(Fn(u8) -> u8) + 'static + Send + Sync>; // OK (but see #39318) + +fn main() {} |
