blob: f0691b324ffd0761b0503ae8c1fdf416b343b0cc [file] [edit]
! RUN: bbc -emit-fir -o - %s | FileCheck %s
! CHECK-LABEL: func @_QQmain
program main
integer :: ip
pointer :: ip
allocate(ip)
assign 10 to ip
! CHECK: fir.store %c10_i32 to %{{.*}} : !fir.ptr<i32>
10 return
end program main