mirror of
https://github.com/nasa/trick.git
synced 2025-01-13 00:09:49 +00:00
16 lines
149 B
C++
16 lines
149 B
C++
|
// @trick_parse{everything}
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
class Foo {
|
||
|
|
||
|
public:
|
||
|
|
||
|
int i;
|
||
|
|
||
|
void foo() {
|
||
|
std::cout << i++ << '\n';
|
||
|
}
|
||
|
|
||
|
};
|