// RUN: not %target-sil-opt -enable-sil-verify-all %s -definite-init -verify 2>&1 | %FileCheck %s import Builtin import Swift // main sil [ossa] @main : $@convention(c) (Int32, UnsafeMutablePointer>>) -> Int32 { bb0(%0 : $Int32, %1 : $UnsafeMutablePointer>>): %2 = integer_literal $Builtin.Int32, 0 %3 = struct $Int32 (%2 : $Builtin.Int32) return %4 : $Int32 // expected-error {{use of undefined value '%5'}} // CHECK-NOT: error: use of undefined value '%4' // CHECK: incorrect message found }