File tree 1 file changed +20
-19
lines changed
1 file changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -252,25 +252,6 @@ pub async fn test_unimplemented() {
252
252
let _ = <( ) as Trait >:: f;
253
253
}
254
254
255
- #[ cfg( async_trait_nightly_testing) ]
256
- pub async fn test_divering_function ( ) {
257
- #[ async_trait]
258
- pub trait Trait {
259
- async fn f ( ) -> !;
260
- }
261
-
262
- #[ async_trait]
263
- impl Trait for ( ) {
264
- async fn f ( ) -> ! {
265
- loop {
266
- std:: thread:: sleep ( std:: time:: Duration :: from_millis ( 1 ) ) ;
267
- }
268
- }
269
- }
270
-
271
- let _ = <( ) as Trait >:: f;
272
- }
273
-
274
255
// https://github.com/dtolnay/async-trait/issues/1
275
256
pub mod issue1 {
276
257
use async_trait:: async_trait;
@@ -1641,3 +1622,23 @@ pub mod issue238 {
1641
1622
async fn f ( ) { }
1642
1623
}
1643
1624
}
1625
+
1626
+ // https://github.com/dtolnay/async-trait/issues/266
1627
+ #[ cfg( async_trait_nightly_testing) ]
1628
+ pub mod issue266 {
1629
+ use async_trait:: async_trait;
1630
+
1631
+ #[ async_trait]
1632
+ pub trait Trait {
1633
+ async fn f ( ) -> !;
1634
+ }
1635
+
1636
+ #[ async_trait]
1637
+ impl Trait for ( ) {
1638
+ async fn f ( ) -> ! {
1639
+ loop {
1640
+ std:: thread:: sleep ( std:: time:: Duration :: from_millis ( 1 ) ) ;
1641
+ }
1642
+ }
1643
+ }
1644
+ }
You can’t perform that action at this time.
0 commit comments