2022-08-02 16:48:23 -05:00
|
|
|
// aux-build:issue-99734-aux.rs
|
|
|
|
// build-aux-docs
|
|
|
|
// ignore-cross-compile
|
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate issue_99734_aux;
|
|
|
|
|
|
|
|
pub use issue_99734_aux::*;
|
|
|
|
|
2023-01-23 15:31:35 -06:00
|
|
|
// @count foo/index.html '//a[@class="fn"][@title="fn foo::main"]' 1
|
2022-08-02 16:48:23 -05:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
pub fn main() -> std::ffi::c_int;
|
|
|
|
}
|