summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-json/fns/return_type_alias.rs
blob: 2578bb49ad339ab465f3d0a7d8f65612a0132b63 (plain)
1
2
3
4
5
6
7
8
9
10
// Regression test for <https://github.com/rust-lang/rust/issues/104851>

/// @set foo = "$.index[*][?(@.name=='Foo')].id"
pub type Foo = i32;

// @is "$.index[*][?(@.name=='demo')].inner.decl.output.kind" '"resolved_path"'
// @is "$.index[*][?(@.name=='demo')].inner.decl.output.inner.id" $foo
pub fn demo() -> Foo {
    42
}