1! { dg-do compile }
2! { dg-options "-std=f2003" }
3!
4! PR fortran/33197
5!
6! Check implementation of L2 norm (Euclidean vector norm)
7!
8implicit none
9
10print *, norm2([1.0, 2.0]) ! { dg-error "has no IMPLICIT type" }
11end
12