1! { dg-do compile }
2! { dg-options "-std=f2008" }
3!
4! Check that the GNU additions to ISO_C_Binding are properly diagnosed
5!
6use, intrinsic :: iso_c_binding, only: c_int128_t ! { dg-error "is not in the selected standard" }
7use, intrinsic :: iso_c_binding, only: c_int_least128_t ! { dg-error "is not in the selected standard" }
8use, intrinsic :: iso_c_binding, only: c_int_fast128_t ! { dg-error "is not in the selected standard" }
9use, intrinsic :: iso_c_binding, only: c_float128 ! { dg-error "is not in the selected standard" }
10use, intrinsic :: iso_c_binding, only: c_float128_complex ! { dg-error "is not in the selected standard" }
11implicit none
12end
13