Teach the include sorter to skip files under test trees and under INPUTS
[oota-llvm.git] / test / Verifier / 2008-03-01-AllocaSized.ll
1 ; RUN: not llvm-as %s -o /dev/null 2>&1 | grep "Cannot allocate unsized type"
2 ; PR2113
3
4 define void @test() {
5         %A = alloca void()
6         ret void
7 }
8