blob: 868ddd7b6dcebe3718507304c01f565f2edfe67c (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | // 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
    ],
};
 |