summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/return-impl-trait.rs
blob: 1ccf5ac46119adcf609cb37ab7809e468ac787ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(type_alias_impl_trait)]

pub trait Backend {}

impl Backend for () {}

pub struct Module<T>(T);

pub type BackendImpl = impl Backend;

// @has return_impl_trait/fn.make_module.html
/// Documentation
pub fn make_module() -> Module<BackendImpl> {
    Module(())
}