From Jason Turner

[dcl.ptr]

Diff to HTML by rtfpessoa

tmp/tmp7jk9d_sm/{from.md → to.md} RENAMED
@@ -59,9 +59,11 @@ cv-unqualified pointer later, for example:
59
  *p = 5; // clobber ci
60
  ```
61
 
62
  See also  [[expr.ass]] and  [[dcl.init]].
63
 
64
- There are no pointers to references; see  [[dcl.ref]]. Since the address
65
- of a bit-field ([[class.bit]]) cannot be taken, a pointer can never
66
- point to a bit-field.
 
 
67
 
 
59
  *p = 5; // clobber ci
60
  ```
61
 
62
  See also  [[expr.ass]] and  [[dcl.init]].
63
 
64
+ Forming a pointer to reference type is ill-formed; see  [[dcl.ref]].
65
+ Forming a pointer to function type is ill-formed if the function type
66
+ has *cv-qualifier*s or a *ref-qualifier*; see  [[dcl.fct]]. Since the
67
+ address of a bit-field ([[class.bit]]) cannot be taken, a pointer can
68
+ never point to a bit-field.
69