mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
// exact-check
|
|
|
|
const FILTER_CRATE = 'std';
|
|
|
|
const EXPECTED = {
|
|
'query': 'prinltn',
|
|
'others': [
|
|
{ 'path': 'std', 'name': 'println' },
|
|
{ 'path': 'std', 'name': 'print' },
|
|
{ 'path': 'std', 'name': 'eprintln' },
|
|
],
|
|
};
|