2015-01-21 04:35:57 +00:00
|
|
|
#![feature(optin_builtin_traits)]
|
|
|
|
|
2015-04-06 13:49:30 -07:00
|
|
|
// @matches negative_impl/struct.Alpha.html '//pre' "pub struct Alpha"
|
2015-01-21 04:35:57 +00:00
|
|
|
pub struct Alpha;
|
2015-04-06 13:49:30 -07:00
|
|
|
// @matches negative_impl/struct.Bravo.html '//pre' "pub struct Bravo<B>"
|
2015-02-12 10:29:52 -05:00
|
|
|
pub struct Bravo<B>(B);
|
2015-01-21 04:35:57 +00:00
|
|
|
|
2015-04-06 13:49:30 -07:00
|
|
|
// @matches negative_impl/struct.Alpha.html '//*[@class="impl"]//code' "impl !Send for Alpha"
|
2015-01-21 04:35:57 +00:00
|
|
|
impl !Send for Alpha {}
|
|
|
|
|
2015-04-06 13:49:30 -07:00
|
|
|
// @matches negative_impl/struct.Bravo.html '//*[@class="impl"]//code' "impl<B> !Send for Bravo<B>"
|
2015-01-21 04:35:57 +00:00
|
|
|
impl<B> !Send for Bravo<B> {}
|