[WinEH] Disallow cyclic unwinds
[oota-llvm.git] / test / Verifier / token3.ll
1 ; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
2
3 define void @f(token %A, token %B) {
4 entry:
5   alloca token
6 ; CHECK: invalid type for alloca
7   ret void
8 }