blob: 7963690e4484a0b95ce5c6971e7ca3259e3735b5 (
plain)
1
2
3
4
5
6
7
8
9
|
#![feature(extern_types)]
extern "C" {
/// No inner information
pub type Foo;
}
//@ is "$.index[?(@.docs=='No inner information')].name" '"Foo"'
//@ is "$.index[?(@.docs=='No inner information')].inner" \"extern_type\"
|