mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
295 B
D
10 lines
295 B
D
module checkaction_context_assert_0;
|
|
/*
|
|
REQUIRED_ARGS: -vcg-ast -o- -checkaction=context
|
|
OUTPUT_FILES: compilable/checkaction-context-assert-0.d.cg
|
|
TEST_OUTPUT_FILE: extra-files/checkaction-context-assert-0.d.cg
|
|
*/
|
|
|
|
void a() { assert(0); }
|
|
void b() { assert(false); }
|
|
void c() { assert(null); }
|