mirror of
https://github.com/boostorg/python.git
synced 2026-01-23 17:52:17 +00:00
14 lines
93 B
C++
14 lines
93 B
C++
namespace add_test {
|
|
|
|
struct C
|
|
{
|
|
int x;
|
|
};
|
|
|
|
const int get_x(C& c)
|
|
{
|
|
return c.x;
|
|
}
|
|
|
|
}
|