summaryrefslogtreecommitdiff
path: root/tests/test_exercises/exercises/test_failure.rs
blob: 8c8d59d807cdbf91fccb4f5ab1f655fcd59d2fd2 (plain)
1
2
3
4
5
6
7
8
9
fn main() {}

#[cfg(test)]
mod tests {
    #[test]
    fn fails() {
        assert!(false);
    }
}