summaryrefslogtreecommitdiff
path: root/tests/exec/ref1.cpp
blob: f62d1f6032084201aff3e7b695c9d07ef2339c33 (plain) (blame)
1
2
3
4
5
6
7
8
#include <iostream>

int main() {
  int x = 41;
  int &y = x;
  y = 42;
  std::cout << "x = " << x << "\n";
}