You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
#![stable(feature = "a", since = "b")]
12
+
//~^ ERROR stability attributes may not be used outside of the standard library
13
+
mod inner_private_module {
14
+
// UnnameableTypeAlias isn't marked as reachable, so no stability annotation is required here
15
+
pubtypeUnnameableTypeAlias = u8;
16
+
}
17
+
18
+
#[stable(feature = "a", since = "b")]
19
+
//~^ ERROR stability attributes may not be used outside of the standard library
0 commit comments