! Tests the fix for PR33334, in which the TYPE in the function! declaration cannot be legally accessed.!! Contributed by Tobias Burnus <burnus@gcc.gnu.org>!module types
implicit nonetype t
integer:: i =99end type t
end modulemodule x
use types
interfacetype(t)functionbar()! { dg-error "is not accessible" }end functionend interfaceend module