]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/playground-arg.rs
Rollup merge of #107769 - compiler-errors:pointer-like, r=eholk
[rust.git] / tests / rustdoc / playground-arg.rs
1 // compile-flags: --playground-url=https://example.com/ -Z unstable-options
2
3 #![crate_name = "foo"]
4
5 //! ```
6 //! use foo::dummy;
7 //! dummy();
8 //! ```
9
10 pub fn dummy() {}
11
12 // ensure that `extern crate foo;` was inserted into code snips automatically:
13 // @matches foo/index.html '//a[@class="test-arrow"][@href="https://example.com/?code=%23!%5Ballow(unused)%5D%0Aextern+crate+r%23foo;%0Afn+main()+%7B%0Ause+foo::dummy;%0Adummy();%0A%7D&edition=2015"]' "Run"