mirror of
https://github.com/nasa/trick.git
synced 2024-12-23 15:02:25 +00:00
8d314fa1b1
Closes #1144
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';
|
|
}
|
|
|
|
};
|