blob: 58f3098f9512569d1a9e6b232de74e2c778b8a96 [file] [log] [blame]
Chandler Carruth4177e6f2012-07-02 12:47:22 +00001; RUN: not llvm-as %s -o /dev/null |& grep "Cannot allocate unsized type"
Chris Lattnerab3b7782008-03-01 09:01:57 +00002; PR2113
3
4define void @test() {
5 %A = alloca void()
6 ret void
7}
8