代码搜索:Assignment

找到约 8,196 项符合「Assignment」的源代码

代码结果 8,196
www.eeworm.com/read/162614/5522476

c opeq3.c

// { dg-do assemble } // Bug: g++ generates code for assignment in invalid situations. class X { // { dg-error "assignment" } int& a; public: X(int& i): a(i) { }; }; void foo () { int one=1,
www.eeworm.com/read/162614/5523496

ada c85006f.ada

-- C85006F.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5523735

ada c52103k.ada

-- C52103K.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5524704

ada c48009d.ada

-- C48009D.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5525433

ada c37405a.ada

-- C37405A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5525452

ada c35703a.ada

-- C35703A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5526181

f90 parens_1.f90

! PR 20894 ! { dg-do compile } ! Originally contributed by Joost VandeVondele INTEGER, POINTER :: I,J INTEGER :: K ALLOCATE(I) J=>(I) ! { dg-error "Pointer assignment target is neither TARGET nor PO
www.eeworm.com/read/162614/5528039

c struct-non-lval-3.c

/* Bug c/17855, using assignment for non-lvalue. */ struct foo {char x, y, z[2];}; struct foo p, q; void bar(int baz) { (p = q).z[baz] = 1; }
www.eeworm.com/read/162614/5529207

c simd-2.c

/* { dg-do compile } */ /* { dg-options "-Wall" } */ /* Origin: Aldy Hernandez . */ /* Purpose: Program to test generic SIMD support. */ typedef float __attribute__((vector_size(
www.eeworm.com/read/162614/5536763

java assign2.java

// Test for an array assignment bug we've had. public class assign2 { public static Object[][] c () { return new Long[5][5]; } public static Object[] d () { return new Integer[3]; } public st