xref: /llvm-project/flang/test/Semantics/data21.f90 (revision 081e202c8e124780cf77fea461c16f58b26d8d34)
1! RUN: %flang_fc1 -fdebug-dump-symbols %s 2>&1 | FileCheck %s
2! Ensure that DATA-like default component initializers work.
3! CHECK: j (InDataStmt) size=4 offset=0: ObjectEntity type: INTEGER(4) init:123_4
4type t
5  integer j/123/
6end type
7end
8