Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 161 Bytes

Conditional compilation.md

File metadata and controls

7 lines (7 loc) · 161 Bytes
#[cfg(test)] // test-only annotation
fn some_function(&self) {
  // Do something
}

The some_function() method will only get compiled when running tests.