mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
// ignore-order
|
|
|
|
const QUERY = 'fn';
|
|
|
|
const EXPECTED = {
|
|
'others': [
|
|
{ 'path': 'std', 'name': 'fn', ty: 15 }, // 15 is for primitive types
|
|
{ 'path': 'std', 'name': 'fn', ty: 21 }, // 21 is for keywords
|
|
],
|
|
};
|