racket/collects/honu/examples/tup-bind.honu
Stevie Strickland 7dbb99d3c6 merged 292:296 from branches/sstrickl
svn: r297
2005-07-02 04:03:02 +00:00

7 lines
113 B
Plaintext

<int, int> f(int x) { return (x, x); }
struct C() : T {
int x = 3;
int y = { (int x, int y) = f(x); x; };
}