whichever-compiles 1.0.0

Please do not use this.
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 5.3 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 259.7 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 4s Average build duration of successful builds.
  • all releases: 4s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • m-ou-se/whichever-compiles
    112 3 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • m-ou-se

whichever-compiles

The whichever_compiles!{} macro fork()s the compiler to try out different alternatives to find one that compiles.

https://twitter.com/m_ou_se/status/1368632701448818691

Please do not use this.

Example

use whichever_compiles::whichever_compiles;

fn main() {
    whichever_compiles! {
        try { thisfunctiondoesntexist(); }
        try { invalid syntax 1 2 3 }
        try { println!("missing arg: {}"); }
        try { println!("hello {}", world()); }
        try { 1 + 2 }
    }
}

whichever_compiles! {
    try { }
    try { fn world() {} }
    try { fn world() -> &'static str { "world" } }
}
$ cargo run
hello world