代码搜索:implicit

找到约 5,250 项符合「implicit」的源代码

代码结果 5,250
www.eeworm.com/read/366702/2877497

f90 pr19467.f90

! { dg-do run } ! pr 19467 ! test namelist with character arrays ! Based on example provided by paulthomas2@wanadoo.fr program pr19467 implicit none integer :: ier character(len=2)
www.eeworm.com/read/366702/2877501

f90 enum_4.f90

! { dg-do compile } ! Program to test ENUM parsing errors program main implicit none enum, bind (c) enumerator :: red, black = 2 enumerator :: blue = 1, red ! { dg-error "already h
www.eeworm.com/read/366702/2877555

f90 array_constructor_8.f90

! Like array_constructor_6.f90, but check constructors that mix iterators ! and individual scalar elements. ! { dg-do run } program main implicit none call build (42) contains subroutine build (
www.eeworm.com/read/366702/2877572

f03 bind_c_usage_12.f03

! { dg-do compile } ! { dg-options "-std=gnu" } ! PR fortran/34133 ! ! bind(C,name="...") is invalid for dummy procedures ! and for internal procedures. ! subroutine dummy1(a,b) ! implicit none int
www.eeworm.com/read/366702/2877585

f90 mvbits_3.f90

! { dg-do run } ! ! PR fortran/ ! ! The trans-*.c part of the compiler did no know ! that mvbits is an elemental function. ! ! Test case contributed by P.H. Lundow. ! program main implicit none in
www.eeworm.com/read/366702/2877678

f90 size_optional_dim_1.f90

! { dg-do run } ! PR 30865 - passing a subroutine optional argument to size(dim=...) ! used to segfault. program main implicit none integer :: a(2,3) integer :: ires call checkv (ires, a) i
www.eeworm.com/read/366702/2881022

c overflow-warn-5.c

/* PR c/27273 */ /* { dg-do compile } */ /* { dg-options "-Woverflow" } */ unsigned char rx_async(unsigned char p) { return p & 512; /* { dg-warning "overflow in implicit constant conversion" } *
www.eeworm.com/read/366702/2881343

c parm-impl-decl-2.c

/* Test implicit function declarations and other odd declarations in function prototypes. Make sure that LABEL_DECLs don't occur. */ /* Origin: Joseph Myers */ /* { dg-d
www.eeworm.com/read/366702/2881617

c assign-warn-1.c

/* Test diagnostics for bad implicit type conversions. */ /* Origin: Joseph Myers */ /* { dg-do compile } */ /* { dg-options "-pedantic" } */ #define TESTARG(ID, TL, TR) void
www.eeworm.com/read/366702/2882173

c wimplicit-function-declaration-c89-pedantic.c

/* { dg-do compile } */ /* { dg-options "-std=c89 -pedantic-errors -Wimplicit-function-declaration" } */ void f(void) { puts("Hello"); /* { dg-warning "implicit declaration of function" } */ }