代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/440906/1777736
c 900107_01.c
// g++ 1.36.1 bug 900107_01
// Unlike GCC and Cfront 2.0, the g++ 1.36.1 compiler gives struct, union,
// and class declarations which are nested within blocks file scope.
// Cfront 2.0 passes this
www.eeworm.com/read/440906/1777765
c template33.c
// Test nested enums in templates.
// Build don't link:
template
class A
{
public:
enum muni {X, Y};
muni e() { return X; };
muni f();
};
template
typename A::muni A
www.eeworm.com/read/440906/1777838
c anon3.c
// Bug: g++ dies.
// Build don't link:
class cl {
public:
cl();
void set(void *, char *, int);
private:
union {
float vf;
struct ff { // ERROR - nested class in anonymous union
vo
www.eeworm.com/read/440906/1777885
c 2371.c
# 1 "SetLS.cc"
// GROUPS passed templates nested-classes
// Special g++ Options:
//
// The SetLS template test
//
// Wendell Baker, Berkeley CAD Group, 1993 (wbaker@ic.Berkeley.EDU)
//
#pragma imple
www.eeworm.com/read/440906/1778091
c scoping13.c
// Build don't link:
struct A { typedef int foo; };
struct B: public A {
typedef int bar;
struct C {
void g (B::bar); // gets bogus error - nested type failure
void f (B::foo);
};
};
www.eeworm.com/read/440906/1782288
c attr-nest.c
/* { dg-do compile } */
#define ATTR_PRINTF __attribute__ ((format (printf, 1, 2)))
#define ATTR_USED __attribute__ ((used))
void bar (int, ...);
/* gcc would segfault on the nested attribute. */
www.eeworm.com/read/432727/1890416
zul z30-alignpack-0008.zul
If the layout of the hbox and vbox is similar to the following image, it's true.
www.eeworm.com/read/422060/2043809
phpt 067.phpt
--TEST--
function test: nested selects (cursors)
--SKIPIF--
www.eeworm.com/read/376006/2718071
out rowtypes.out
--
-- ROWTYPES
--
-- Make both a standalone composite type and a table rowtype
create type complex as (r float8, i float8);
create temp table fullname (first text, last text);
-- Nested composite
crea
www.eeworm.com/read/366702/2865965
c name-clash4.c
// { dg-do compile }
// Origin: Volker Reichelt
// PR c++/18100: Invalid nested type.
struct A
{
template struct A {}; // { dg-error "same name" }
};
A::A a; /