mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-12 17:47:33 -07:00
10 lines
116 B
C++
10 lines
116 B
C++
// Test for gcc-style "pure" attribute.
|
|
int __attribute__((pure)) f()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
return f();
|
|
}
|