about summary refs log tree commit diff
path: root/tests/ui/frontmatter/frontmatter-crlf.rs
blob: b46cc9ddbb0e0913a6d5a0c36f635c4b3d2bd041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env -S cargo -Zscript
---
[dependencies]
clap = "4"
---

//@ check-pass
// ignore-tidy-cr

// crlf line endings should be accepted

#![feature(frontmatter)]

fn main() {}