All pastes #2046479 Raw Edit

Untitled

public text v1 · immutable
#2046479 ·published 2011-04-14 18:13 UTC
rendered paste body
static void f();

class A {
private:
  int m_;
  friend void f();
};

static void f() {
  A a;
  a.m_ = 4;
}