PR fortran/20520
* gfortran.dg/allocatable_uninitialized_1.f90: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@265698
138bc75d-0d04-0410-961f-
82ee72b054a4
+2018-10-31 Thomas Koenig <tkoenig@gcc.gnu.org>
+
+ PR fortran/20520
+ * gfortran.dg/allocatable_uninitialized_1.f90: New test.
+
2018-10-31 Nathan Sidwell <nathan@acm.org>
* g++.dg/lookup/friend21.C: New.
--- /dev/null
+! { dg-do compile }
+! { dg-options "-O -Wall" }
+program main
+ real,allocatable:: a(:),b(:)
+
+ a(1)=2*b(1) ! { dg-warning "uninitialized" }
+
+end