blob: 61ee486b9dc679669ce4d02e8726b55dd36738a2 (
plain)
1
2
3
4
5
6
7
8
|
// RUN: not llvm-tblgen --no-warn-on-unused-template-args %s 2>&1 | FileCheck %s
// XFAIL: vg_leak
//CHECK: expected string type argument in !exists operator
class A;
defvar value = !exists<A>(123);
|