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