]> git.lizzy.rs Git - rust.git/blob - tests/ui/author.rs
Merge pull request #2574 from mark-i-m/i128
[rust.git] / tests / ui / author.rs
1 #![feature(plugin, custom_attribute)]
2
3 fn main() {
4
5     #[clippy(author)]
6     let x: char = 0x45 as char;
7 }