05ba8a3a07
git-svn-id: http://root.cern.ch/svn/root/trunk@45844 27541ba8-7e3a-0410-8455-c3a389f83636
13 lines
230 B
C
13 lines
230 B
C
// The demo shows the Fix-it hints that try to guess what the user had meant
|
|
// when he did the error
|
|
// Author: Vassil Vassilev <vvasilev@cern.ch>
|
|
|
|
struct A {
|
|
int X;
|
|
};
|
|
|
|
int PreciseWording () {
|
|
A SomeA;
|
|
int y = *SomeA.X;
|
|
}
|