// RUN: %clang_cc1 -verify %s -std=c++11 template struct S { decltype(I) n; int &&r = I; }; S<5> s; template struct U { decltype(v) n; int &&r = v; }; U u;