1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-23 00:28:46 +02:00
Files
exercises
clippy
collections
conversions
enums
error_handling
functions
generics
if
macros
modules
move_semantics
option
primitive_types
standard_library_types
strings
structs
tests
README.md
tests1.rs
tests2.rs
tests3.rs
threads
traits
variables
README.md
quiz1.rs
quiz2.rs
quiz3.rs
quiz4.rs
src
tests
.all-contributorsrc
.clog.toml
.editorconfig
.gitignore
.gitpod.yml
.replit
CHANGELOG.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
LICENSE
README.md
default_out.txt
info.toml
install.ps1
install.sh
rustlings/exercises/tests/tests2.rs

14 lines
277 B
Rust
Raw Normal View History

2018-02-21 22:09:53 -08:00
// tests2.rs
2015-09-20 18:31:41 -04:00
// This test has a problem with it -- make the test compile! Make the test
// pass! Make the test fail! Execute `rustlings hint tests2` for hints :)
2015-09-20 18:31:41 -04:00
// I AM NOT DONE
2015-09-20 18:31:41 -04:00
#[cfg(test)]
mod tests {
#[test]
fn you_can_assert_eq() {
assert_eq!();
}
}