mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 18:57:19 +00:00
14 lines
300 B
JavaScript
14 lines
300 B
JavaScript
// exact-check
|
|
|
|
const FILTER_CRATE = 'std';
|
|
|
|
const EXPECTED = {
|
|
'query': 'macro:print',
|
|
'others': [
|
|
{ 'path': 'std', 'name': 'print' },
|
|
{ 'path': 'std', 'name': 'println' },
|
|
{ 'path': 'std', 'name': 'eprint' },
|
|
{ 'path': 'std', 'name': 'eprintln' },
|
|
],
|
|
};
|