xref: /llvm-project/llvm/test/Verifier/token3.ll (revision b611e3f50e6c9fb564864e437ad8fd26809f0a19)
1; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
2
3define void @f(token %A, token %B) {
4entry:
5  alloca token
6; CHECK: invalid type for alloca
7  ret void
8}
9