1! { dg-do compile }
2! { dg-options "-std=f2003 -Wall -Wno-conversion" }
3! Support F2008's c_sizeof()
4!
5USE ISO_C_BINDING, only: C_SIZE_T, c_sizeof ! { dg-error "is not in the selected standard" }
6integer(C_SIZE_T) :: i
7i = c_sizeof(i)
8end
9
10