rustycpp 0.1.6

An attempt to implement the C++20 standard. This is mostly to have fun & learn rust
1
2
3
4
5
6
7
8
//! Test suite of the compiler
#![allow(missing_docs, clippy::missing_docs_in_private_items)]
#[cfg(test)]
pub mod testincluder;
#[cfg(test)]
pub mod testpreprocessordefine;
#[cfg(test)]
pub mod testpreprocessorif;