File: test.rs

package info (click to toggle)
rust-chic 1.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 200 kB
  • sloc: makefile: 4
file content (6 lines) | stat: -rw-r--r-- 118 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
use std::error::Error;

#[test]
fn should_work() -> Result<(), Box<dyn Error + Send + Sync + 'static>> {
    Ok(())
}