xref: /llvm-project/llvm/test/Assembler/alloca-invalid-type.ll (revision a3b0eb2f7fecd0fe15566b01215602a9784003ed)
1; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2
3; CHECK: invalid type for alloca
4
5define void @test() {
6entry:
7  alloca metadata !{null}
8  ret void
9}
10