mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
17 lines
295 B
Rust
17 lines
295 B
Rust
// 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::*;
|
|
|
|
// @count foo/index.html '//a[@class="fn"][@title="foo::main fn"]' 1
|
|
|
|
extern "C" {
|
|
pub fn main() -> std::ffi::c_int;
|
|
}
|