1! { dg-do compile }
2! { dg-options "-std=f2003" }
3!
4! Test errors for usage of %loc as an rvalue with a real standard.
5!
6program main
7implicit none
8
9integer, volatile :: i, j, k
10
11k = %loc(j) ! { dg-error "Legacy Extension:" }
12
13end
14