2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_memcpy_4.f90
blob0f8b5cb15b0e5e1abd630fe3b6ba21d9bb66f65c
1 ! { dg-do compile }
2 ! { dg-options "-O2 -fdump-tree-original" }
3 type t
4 logical valid
5 integer :: x, y
6 end type
7 type (t) :: s(5)
8 type (t) :: d(5)
10 d = s
11 end
12 ! { dg-final { scan-tree-dump-times "d = " 1 "original" } }
13 ! { dg-final { cleanup-tree-dump "original" } }