Test that choosing the default bundle does not ice
This commit is contained in:
parent
242daf86d9
commit
634d8cb757
1 changed files with 19 additions and 0 deletions
19
tests/ui/issues/issue-106755.rs
Normal file
19
tests/ui/issues/issue-106755.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// compile-flags:-Ztranslate-lang=en_US
|
||||
|
||||
#![feature(negative_impls)]
|
||||
#![feature(marker_trait_attr)]
|
||||
|
||||
#[marker]
|
||||
trait MyTrait {}
|
||||
|
||||
struct TestType<T>(::std::marker::PhantomData<T>);
|
||||
|
||||
unsafe impl<T: MyTrait + 'static> Send for TestType<T> {}
|
||||
|
||||
impl<T: MyTrait> !Send for TestType<T> {} //~ ERROR found both positive and negative implementation
|
||||
|
||||
unsafe impl<T: 'static> Send for TestType<T> {} //~ ERROR conflicting implementations
|
||||
|
||||
impl !Send for TestType<i32> {}
|
||||
|
||||
fn main() {}
|
Loading…
Add table
Reference in a new issue