2023-04-04 08:23:33 -05:00
|
|
|
//@ compile-flags: --document-private-items --crate-type=lib
|
|
|
|
//@ edition: 2021
|
|
|
|
|
|
|
|
// Issue 109931 -- test against accidentally documenting the `impl Future`
|
|
|
|
// that comes from an async fn desugaring.
|
|
|
|
|
|
|
|
// Check that we don't document an unnamed opaque type
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ !has async_fn_opaque_item/opaque..html
|
2023-04-04 08:23:33 -05:00
|
|
|
|
|
|
|
// Checking there is only a "Functions" header and no "Opaque types".
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has async_fn_opaque_item/index.html
|
|
|
|
//@ count - '//*[@class="section-header"]' 1
|
|
|
|
//@ has - '//*[@class="section-header"]' 'Functions'
|
2023-04-04 08:23:33 -05:00
|
|
|
|
|
|
|
pub async fn test() {}
|