mdbook/tests/testsuite/test/passing_tests/src/passing1.md

30 lines
289 B
Markdown
Raw Normal View History

# Passing Tests 1
```rust
assert!(true);
```
```rust
println!("hello!");
```
## Also check includes
```rust
{{#include test1.rs}}
```
```rust
{{#include test2.rs:2}}
```
```rust
{{#include test2.rs:PASSING}}
```
```rust
{{#rustdoc_include test3.rs:2}}
```
{{#playground test1.rs}}