1! { dg-do compile }
2module binding_label_tests_11
3  use iso_c_binding, only: c_int
4  implicit none
5contains
6  function one() bind(c, name="c_one")
7    integer(c_int) one
8    one = 1
9  end function one
10end module binding_label_tests_11
11