dagger-components/examples/rust-test/testdata/crates/example_bin/src/main.rs

12 lines
137 B
Rust
Raw Normal View History

fn main() {
println!("Hello, world!");
}
#[cfg(test)]
mod tests {
#[test]
fn test_main() {
assert_eq!(1, 1)
}
}