OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:redefinition
(Results
26 - 50
of
498
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaCXX/
redeclared-auto.cpp
5
auto a = 0; // expected-error {{
redefinition
}}
6
int a = 0; // expected-error {{
redefinition
}}
18
auto S::a; // expected-error {{
redefinition
}} expected-error {{requires an initializer}}
19
int S::a = 0; // expected-error {{
redefinition
}}
/external/llvm/test/Assembler/
invalid-comdat2.ll
5
; CHECK:
redefinition
of comdat '$v'
/external/llvm/test/Feature/
globalredefinition3.ll
1
; RUN: not llvm-as %s -o /dev/null 2>&1 | grep "
redefinition
of global '@B'"
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
region-alias-1.d
3
#error: .*:[0-9]+: error:
redefinition
of memory region alias `MY_ALIAS'
/external/clang/test/Sema/
pragma-weak.c
5
void both3(void) __attribute((alias("__both3"))); // expected-error {{
redefinition
of 'both3'}}
10
void a3(void) __attribute((alias("__a3"))); // expected-error {{
redefinition
of 'a3'}}
alias-redefinition.c
8
void fun1(void) __attribute((alias("f1"))); // expected-error {{
redefinition
of 'fun1'}}
12
void fun2() {} // expected-error {{
redefinition
of 'fun2'}}
16
void fun3(void) __attribute((alias("f3"))); // expected-error {{
redefinition
of 'fun3'}}
24
void __attribute((alias("f5"))) fun5(void) {} // expected-error {{
redefinition
of 'fun5'}} // expected-note {{previous definition}}
30
int var3 = 3; // expected-error{{
redefinition
of 'var3'}}
c11-typedef-redef.c
13
typedef int vla[N]; // expected-error{{
redefinition
of typedef for variably-modified type 'int [N]'}}
17
typedef vla2 vla3; // expected-error{{
redefinition
of typedef for variably-modified type 'vla2' (aka 'int [N]')}}
redefinition.c
4
int f(int a) { return 0; } // expected-error {{
redefinition
of 'f'}}
14
int g(void) { return 0; } // expected-error{{
redefinition
of a 'extern inline' function 'g' is not supported in C99 mode}}
typedef-variable-type.c
1
// RUN: %clang_cc1 %s -verify -fsyntax-only -pedantic -Wno-typedef-
redefinition
-std=c99
7
// (The test uses -Wno-typedef-
redefinition
to simulate this.)
/prebuilts/go/darwin-x86/test/fixedbugs/
bug350.go
12
func (T) m() {} // ERROR "T[.]m redeclared|
redefinition
"
15
func (*T) p() {} // ERROR "[(][*]T[)][.]p redeclared|
redefinition
"
bug007.go
21
main.go.c:14: error:
redefinition
of typedef ?_T_2?
23
main.go.c:16: error:
redefinition
of ?struct _T_2?
/prebuilts/go/linux-x86/test/fixedbugs/
bug350.go
12
func (T) m() {} // ERROR "T[.]m redeclared|
redefinition
"
15
func (*T) p() {} // ERROR "[(][*]T[)][.]p redeclared|
redefinition
"
bug007.go
21
main.go.c:14: error:
redefinition
of typedef ?_T_2?
23
main.go.c:16: error:
redefinition
of ?struct _T_2?
/external/clang/test/CXX/basic/basic.scope/basic.scope.local/
p2.cpp
4
int i; // expected-error{{
redefinition
of 'i'}}
8
int i; // expected-error{{
redefinition
of 'i'}}
13
} catch (int i) { // expected-error {{
redefinition
of 'i'}}
18
int i; // expected-error{{
redefinition
of 'i'}}
29
int i; // expected-error{{
redefinition
of 'i'}}
35
int i; // expected-error{{
redefinition
of 'i'}}
/external/clang/test/Lexer/
objc_macros.m
4
// expected-warning@-1 {{ignoring
redefinition
of Objective-C qualifier macro}}
6
// expected-warning@-1 {{ignoring
redefinition
of Objective-C qualifier macro}}
8
// expected-warning@-1 {{ignoring
redefinition
of Objective-C qualifier macro}}
/external/clang/test/SemaObjC/
check-dup-objc-decls-1.m
6
float Foo; // expected-error {{
redefinition
of 'Foo' as different kind of symbol}}
10
typedef int Bar; // expected-error {{
redefinition
of 'Bar' as different kind of symbol}}
18
@class OBJECT ; // expected-error {{
redefinition
of 'OBJECT' as different kind of symbol}}
23
@interface Gorf @end // expected-error {{
redefinition
of 'Gorf' as different kind of symbol}} expected-note {{previous definition is here}}
25
void Gorf() // expected-error {{
redefinition
of 'Gorf' as different kind of symbol}}
44
NSString * const TestBaz; // expected-error {{
redefinition
of 'TestBaz' with a different type}}
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p15.cpp
12
} catch (int a) { // expected-error {{
redefinition
of 'a'}}
13
int b; // expected-error {{
redefinition
of 'b'}}
/external/clang/test/Misc/
error-limit.c
11
// CHECK: 5:8: error:
redefinition
of 's1'
14
// CHECK-NOT: 9:8: error:
redefinition
of 's2'
/external/clang/test/PCH/
cxx-trailing-return.cpp
12
typedef void f; // expected-error {{typedef
redefinition
with different types ('void' vs 'auto () -> int')}}
14
typedef void g; // expected-error {{typedef
redefinition
with different types ('void' vs 'int ()')}}
/prebuilts/go/darwin-x86/test/
import1.go
13
import bufio "os" // ERROR "redeclared|
redefinition
|incompatible" "imported and not used"
17
fmt "math" // ERROR "redeclared|
redefinition
|incompatible" "imported and not used: \x22math\x22 as fmt"
/prebuilts/go/linux-x86/test/
import1.go
13
import bufio "os" // ERROR "redeclared|
redefinition
|incompatible" "imported and not used"
17
fmt "math" // ERROR "redeclared|
redefinition
|incompatible" "imported and not used: \x22math\x22 as fmt"
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p3.cpp
8
typedef char I; // expected-error {{typedef
redefinition
with different types}}
p4.cpp
6
typedef A A; // expected-error {{
redefinition
of 'A'}}
/external/clang/test/Parser/
control-scope.c
6
return 1 + sizeof (enum {a}); // expected-error {{
redefinition
of enumerator 'a'}}
/external/clang/test/Preprocessor/
mi_opt.c
3
// This test should get a
redefinition
error from m_iopt.h: the MI opt
Completed in 1984 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>