diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-11-26 09:44:43 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-11-26 16:49:46 -0800 |
| commit | f4a775639ca846f29abeed16a7b4e8e1c8819626 (patch) | |
| tree | ad6c9a0c61140ae68169fca89e8641af83c92e33 /src/libsyntax/test.rs | |
| parent | 702127f6f1b099f8a34804ddb71f821444b7b64e (diff) | |
| parent | 21d5d139fc6e04781b7f9d9eeab0f8f0255ac06b (diff) | |
rollup merge of #19298: nikomatsakis/unboxed-closure-parse-the-plus
Implements RFC 438. Fixes #19092. This is a [breaking-change]: change types like `&Foo+Send` or `&'a mut Foo+'a` to `&(Foo+Send)` and `&'a mut (Foo+'a)`, respectively. r? @brson
Diffstat (limited to 'src/libsyntax/test.rs')
| -rw-r--r-- | src/libsyntax/test.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libsyntax/test.rs b/src/libsyntax/test.rs index f21a3185d6d..05828fc05f8 100644 --- a/src/libsyntax/test.rs +++ b/src/libsyntax/test.rs @@ -482,8 +482,7 @@ fn mk_tests(cx: &TestCtxt) -> P<ast::Item> { let ecx = &cx.ext_cx; let struct_type = ecx.ty_path(ecx.path(sp, vec![ecx.ident_of("self"), ecx.ident_of("test"), - ecx.ident_of("TestDescAndFn")]), - None); + ecx.ident_of("TestDescAndFn")])); let static_lt = ecx.lifetime(sp, token::special_idents::static_lifetime.name); // &'static [self::test::TestDescAndFn] let static_type = ecx.ty_rptr(sp, |
