pub fn line_comment(input: &str) -> IResult<&str, &str>
Match a C++-style comment
use rust_lcm_codegen::parser::line_comment; assert_eq!(line_comment("// test\nmore"), Ok(("\nmore", " test")));