// RUN: %clang_cc1 -std=c++1z -verify %s
inline int ; // ok
inline int n; // ok
inline typedef int t; // expected-error {{'inline' can only appear on functions and non-local variables}}
inline ; // expected-error {{'inline' can only appear on functions and non-local variables}}
inline s; // ok