id summary reporter owner description type status milestone component version severity resolution keywords cc 12973 Example in docs for optional copy constructor is wrong barry.revzin@… Fernando Cacciola "In the [http://www.boost.org/doc/libs/1_63_0/libs/optional/doc/html/boost_optional/reference/header__boost_optional_optional_hpp_/detailed_semantics.html documentation for Optional] in the latest version, and many past versions, the example in the copy constructor for `optional` reads: {{{ T v = 2 ; T& ref = v ; optional init(ref); assert ( *init == v ) ; optional init2 ( init ) ; assert ( *init2 == v ) ; v = 3 ; assert ( *init == 3 ) ; assert ( *init2 == 3 ) ; }}} Both `init` and `init2` should be of type `optional`, not `optional`. " Bugs new To Be Determined optional Boost 1.63.0 Cosmetic barry.revzin@…