OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nonconst_int
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/Sema/
conditional-expr.c
64
int *
nonconst_int
;
local
65
*(test0 ? const_int :
nonconst_int
) = 42; // expected-error {{read-only variable is not assignable}}
66
*(test0 ?
nonconst_int
: const_int) = 42; // expected-error {{read-only variable is not assignable}}
79
(test0 ? (test0 ? adr2 : adr2) :
nonconst_int
); // expected-warning {{pointer type mismatch}} expected-warning {{expression result unused}}
/external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp
[
all
...]
Completed in 209 milliseconds