CWG 1394: Incomplete types as parameters of deleted functions
[llvm-project.git] / llvm / test / TableGen / eq-unset.td
blob57f06c3a8a9288395732f100414058dff8657b04
1 // RUN: not llvm-tblgen %s 2>&1 | FileCheck %s
3 // CHECK: error: expected value to be a typed value, got '?'
5 def Z1 {
6   // This one caused an assertion because the value was an UnsetInit
7   // and !eq() can only accept TypedInit's.
8   bit D = !if(!eq(?, 0), 1, 0);