921e5a0eb4
From-SVN: r14840
11 lines
155 B
C
11 lines
155 B
C
// Build don't link:
|
|
|
|
typedef void func_type ();
|
|
func_type *fp;
|
|
void *vp;
|
|
|
|
void example ()
|
|
{
|
|
vp != fp; // gets bogus error - nuttin' wrong wit dat
|
|
}
|