Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. int a;
  2.  
  3. static int b;
  4.  
  5. static int g() {
  6.         return b;
  7. }
  8.  
  9. int f() {
  10.         return a + g();
  11. }
  12.  
  13. int main() {
  14.         return f();
  15. }
  16.