summaryrefslogtreecommitdiff
path: root/test/D/Issues/2940_Ariovistus/Project/test/test1/stuff.cpp
blob: 29705495497ad38ce7ec7277590793db1bb4d0ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "stuff.h"

X::X() {
    this->i = 1;
}
int X::y(){
    return this->i;
}

X *SomeX() {
    return new X(); 
}