代码搜索:implicit

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

代码结果 5,250
www.eeworm.com/read/162614/5522103

c 900205_04.c

// { dg-do assemble } // g++ 1.36.1 bug 900205_04 // g++ allows a class for which an implicit default X::X() constructor must // be created (implicitly by the compiler) to be derived from another cl
www.eeworm.com/read/162614/5523262

f90 pr23373-1.f90

program main implicit none real, dimension (:), pointer :: x x => null () x => test (x) if (.not. associated (x)) call abort if (size (x) .ne. 10) call abort contains function test (p)
www.eeworm.com/read/162614/5523281

f90 elemental.f90

! Program to test elemental functions. program test_elemental implicit none integer(kind = 4), dimension (2, 4) :: a integer(kind = 4), dimension (2, 4) :: b integer(kind = 8), dimension(2
www.eeworm.com/read/162614/5526037

f90 enum_6.f90

! { dg-do compile } ! Program to test ENUM parsing errors program main implicit none integer :: i = 1 enum, bind (c) ! { dg-warning "New in Fortran 2003" } enumerator :: sun, mon = 2
www.eeworm.com/read/162614/5526132

f90 vector_subscript_1.f90

! PR 19239. Check for various kinds of vector subscript. In this test, ! all vector subscripts are indexing single-dimensional arrays. ! { dg-do run } program main implicit none integer, paramet
www.eeworm.com/read/162614/5526162

f90 enum_5.f90

! { dg-do compile } ! Program to test ENUM parsing errors program main implicit none integer :: i = 1 enum, bind (c) ! { dg-warning "New in Fortran 2003" } enumerator :: red, black = i
www.eeworm.com/read/162614/5526248

f90 enum_2.f90

! { dg-do compile } ! Program to test ENUM parsing errors program main implicit none enum, bind (c) ! { dg-warning "New in Fortran 2003" } enumerator :: red, black integer :: x ! { dg-
www.eeworm.com/read/162614/5526311

f90 getenv_1.f90

! { dg-do run } ! Test the getenv and get_environment_variable intrinsics. ! Ignore the return value because it's not supported/meaningful on all targets program getenv_1 implicit none character(l
www.eeworm.com/read/162614/5526352

f90 enum_7.f90

! { dg-do compile } ! Program to test ENUM parsing errors program main implicit none enum, bind (c) ! { dg-warning "New in Fortran 2003" } enumerator :: sun, mon = 2 enum, bind (c
www.eeworm.com/read/162614/5526359

f90 char_pointer_dependency.f90

! { dg-do run } ! Test assignments from character pointer functions with dependencies ! are correctly resolved. ! Provided by Paul Thomas pault@gcc.gnu.org program char_pointer_dependency implicit n