2021-06-30 07:20:17 -05:00
|
|
|
// exact-check
|
|
|
|
|
2021-08-11 13:14:26 -05:00
|
|
|
const FILTER_CRATE = 'std';
|
2021-06-30 07:20:17 -05:00
|
|
|
|
|
|
|
const EXPECTED = {
|
2023-06-09 09:49:38 -05:00
|
|
|
'query': 'macro:print',
|
2021-06-30 07:20:17 -05:00
|
|
|
'others': [
|
|
|
|
{ 'path': 'std', 'name': 'print' },
|
|
|
|
{ 'path': 'std', 'name': 'println' },
|
2022-12-16 14:19:38 -06:00
|
|
|
{ 'path': 'std', 'name': 'eprint' },
|
2021-06-30 07:20:17 -05:00
|
|
|
{ 'path': 'std', 'name': 'eprintln' },
|
|
|
|
],
|
|
|
|
};
|