blob: 7478334959fef02c91ea9f03384a577ce8c95c53 [file] [log] [blame]
Andrew Top61a84952019-04-30 15:07:33 -07001; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
2; CHECK: invalid type for alloca
3; PR2113
4
5define void @test() {
6 %A = alloca void()
7 ret void
8}
9