(eol: &str)
| 1912 | } |
| 1913 | |
| 1914 | fn comment_until_eol(eol: &str) -> LexerOutput { |
| 1915 | let source = format!("123 # Foo{eol}456"); |
| 1916 | lex_source(&source) |
| 1917 | } |
| 1918 | |
| 1919 | #[test] |
| 1920 | fn test_comment_until_unix_eol() { |
nothing calls this directly
no test coverage detected