1int d_init()
2{
3 return 456;
4}
5
6int d_global = d_init();
7
8int
9d_function ()
10{ // Find this line number within d_dunction().
11 return 12345;
12}
13

source code of lldb/test/API/functionalities/load_unload/hidden/d.cpp