blob: 6b0d32eaf86a847a34cc72fc1e5e8e9b66eef47b (
plain)
1
2
3
4
5
6
7
8
|
GDTEST_OK
hello == A.hello? false
hello == A.B.hello? false
hello == C.hello? false
A.hello == A.B.hello? false
A.hello == C.hello? false
A.B.hello == C.hello? false
C.hello == C.hello? true
|