2023-04-13 06:19:00 -05:00
|
|
|
// This test ensures that compiler builtin proc-macros are considered as such.
|
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/index.html'
|
2023-04-13 06:19:00 -05:00
|
|
|
// Each compiler builtin proc-macro has a trait equivalent so we should have
|
|
|
|
// a trait section as well.
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ count - '//*[@id="main-content"]//*[@class="section-header"]' 2
|
|
|
|
//@ has - '//*[@id="main-content"]//*[@class="section-header"]' 'Traits'
|
|
|
|
//@ has - '//*[@id="main-content"]//*[@class="section-header"]' 'Derive Macros'
|
2023-04-13 06:19:00 -05:00
|
|
|
|
|
|
|
// Now checking the correct file is generated as well.
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/derive.Clone.html'
|
|
|
|
//@ !has 'foo/macro.Clone.html'
|
2023-04-13 06:19:00 -05:00
|
|
|
pub use std::clone::Clone;
|