Consider:
This is a classic mistake (using a single equal sign) that has been discussed on Mathematica Stack Exchange before. I know that Clear[Derivative] will cure the problem. However, consider the following.
?f' does not reveal anything in the global workspace. Neither does ?f'[x]. Yet f'[x]=. clears the problem, so I believe something is stored in f'[x] but why can't I see it with the question mark process. Any way to see it?


Derivative, does?Derivativecontain that information? – MarcoB Apr 17 '16 at 06:23Clear[f, x]andDSolve[{f'[x]=8x^3+12x+3,f[1]==6]},f[x],x], entering ?Derivative just brings up instructions for the Derivative command, not the content of f'[x]. – David Apr 17 '16 at 15:00