blob: 51258bef76e58fd632479d36e641e1a7cc4b9ca5 [file] [log] [blame]
Chandler Carruth49589f02012-07-02 18:37:59 +00001; RUN: not llvm-as %s -o /dev/null 2>&1 | 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