====================================
Unexpected string literal prefixes
====================================

const A: &[&str] = &[
    @"asdf",
    <"asdf",
    >"asdf",
    :"asdf"
];

---

(source_file
    (const_item
    name: (identifier)
    type: (reference_type
        type: (array_type
        element: (reference_type
            type: (primitive_type))))
    value: (reference_expression
        value: (array_expression
            (ERROR)
            (string_literal
                (string_content))
            (ERROR)
            (string_literal
                (string_content))
            (ERROR)
            (string_literal
                (string_content))
            (ERROR)
            (string_literal
                (string_content))))))
