summaryrefslogtreecommitdiff
path: root/test/Verifier/2008-03-01-AllocaSized.ll
blob: 079a75d792e117b3d7573577db7ee6fb9b0a8563 (plain)
1
2
3
4
5
6
7
8
; RUN: not llvm-as %s -o /dev/null |& grep {Cannot allocate unsized type}
; PR2113

define void @test() {
	%A = alloca void()
	ret void
}