Skip to content
Snippets Groups Projects
Select Git revision
  • eadd9bcdb0eff1d4b125f96f3b650d5fa114214e
  • master default protected
  • rust
  • extract-fix-master
  • extract-fix
  • extract-fix-1.0.0
6 results

warning.ml

Blame
  • main.rs 176 B
    use lalrpop_util::lalrpop_mod;
    
    lalrpop_mod!(pub grammar);
    
    use grammar::*;
    
    fn main() {
        println!("hello world");
    }
    
    #[test] 
    fn hello() {
        println!("Hello in test")
    }