Fix ICE with match_def_path

This commit is contained in:
mcarton 2016-02-22 20:00:51 +01:00
parent 996a86fdab
commit 3b783152cc
2 changed files with 14 additions and 1 deletions

9
tests/run-pass/ice-700.rs Executable file
View file

@ -0,0 +1,9 @@
#![feature(plugin)]
#![plugin(clippy)]
#![deny(clippy)]
fn core() {}
fn main() {
core();
}