summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_ast/src/util/case.rs
blob: 1afd7dea7408ecb9c247e101ac7f4f951c636cf3 (plain)
1
2
3
4
5
6
/// Whatever to ignore case (`fn` vs `Fn` vs `FN`) or not. Used for recovering.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum Case {
    Sensitive,
    Insensitive,
}