summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/raw/too-many-hash.rs
blob: f3d3b207fad6b2841f2b609cfc973331d8edb2cc (plain)
1
2
3
4
5
6
// ignore-tidy-linelength

fn main() {
    let s: &str = r################################################################################################################################################################################################################################################################"very raw"################################################################################################################################################################################################################################################################;
    //~^ ERROR too many `#` symbols: raw strings may be delimited by up to 255 `#` symbols, but found 256
}