2018-12-28 17:11:13 -06:00
|
|
|
// revisions: old re
|
|
|
|
|
|
|
|
#![cfg_attr(re, feature(re_rebalance_coherence))]
|
2015-03-06 14:55:30 -06:00
|
|
|
#![feature(optin_builtin_traits)]
|
|
|
|
|
|
|
|
use std::marker::Copy;
|
|
|
|
|
|
|
|
enum TestE {
|
|
|
|
A
|
|
|
|
}
|
|
|
|
|
|
|
|
struct MyType;
|
|
|
|
|
|
|
|
struct NotSync;
|
|
|
|
impl !Sync for NotSync {}
|
|
|
|
|
2018-12-28 17:11:13 -06:00
|
|
|
impl Sized for TestE {}
|
|
|
|
//[old]~^ ERROR E0322
|
|
|
|
//[old]~| impl of 'Sized' not allowed
|
|
|
|
//[re]~^^^ ERROR E0322
|
|
|
|
|
|
|
|
impl Sized for MyType {}
|
|
|
|
//[old]~^ ERROR E0322
|
|
|
|
//[old]~| impl of 'Sized' not allowed
|
|
|
|
//[re]~^^^ ERROR E0322
|
|
|
|
|
|
|
|
impl Sized for (MyType, MyType) {}
|
|
|
|
//[old]~^ ERROR E0322
|
|
|
|
//[old]~| impl of 'Sized' not allowed
|
|
|
|
//[old]~| ERROR E0117
|
|
|
|
//[re]~^^^^ ERROR E0322
|
|
|
|
//[re]~| ERROR E0117
|
|
|
|
|
|
|
|
impl Sized for &'static NotSync {}
|
|
|
|
//[old]~^ ERROR E0322
|
|
|
|
//[old]~| impl of 'Sized' not allowed
|
|
|
|
//[re]~^^^ ERROR E0322
|
|
|
|
|
|
|
|
impl Sized for [MyType] {}
|
|
|
|
//[old]~^ ERROR E0322
|
|
|
|
//[old]~| impl of 'Sized' not allowed
|
|
|
|
//[old]~| ERROR E0117
|
|
|
|
//[re]~^^^^ ERROR E0322
|
|
|
|
//[re]~| ERROR E0117
|
|
|
|
|
|
|
|
impl Sized for &'static [NotSync] {}
|
|
|
|
//[old]~^ ERROR E0322
|
|
|
|
//[old]~| impl of 'Sized' not allowed
|
|
|
|
//[old]~| ERROR E0117
|
|
|
|
//[re]~^^^^ ERROR E0322
|
|
|
|
//[re]~| ERROR E0117
|
2015-03-06 14:55:30 -06:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|