blob: 7478334959fef02c91ea9f03384a577ce8c95c53 [file] [log] [blame]
Eli Benderskyaa3ffaf2013-04-08 18:33:51 +00001; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
David Majnemera3b0eb22015-02-16 08:38:03 +00002; CHECK: invalid type for alloca
Chris Lattnerffe0da02008-03-01 09:01:57 +00003; PR2113
4
5define void @test() {
6 %A = alloca void()
7 ret void
8}
9