mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
21 lines
191 B
C
21 lines
191 B
C
/*
|
|
REQUIRED_ARGS: -g
|
|
PERMUTE_ARGS:
|
|
GDB_SCRIPT:
|
|
---
|
|
run
|
|
---
|
|
GDB_MATCH: \*ptr = 1
|
|
*/
|
|
|
|
static
|
|
void foo(int* ptr)
|
|
{
|
|
*ptr = 1;
|
|
}
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
foo(0);
|
|
return 0;
|
|
}
|