1// Test hlfir.null code generation to FIR 2 3// RUN: fir-opt %s -convert-hlfir-to-fir | FileCheck %s 4 5func.func @test() { 6 // CHECK: fir.zero_bits !fir.ref<none> 7 %0 = hlfir.null !fir.ref<none> 8 return 9} 10