1; RUN: not llvm-as < %s 2>&1 | FileCheck %s 2 3; CHECK: insertvalue operand and field disagree in type: 'i8*' instead of 'i32' 4 5define void @test() { 6entry: 7 insertvalue { i32, i32 } undef, i8* null, 0 8 ret void 9} 10