summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/show_module.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mismatched_types/show_module.rs')
-rw-r--r--src/test/ui/mismatched_types/show_module.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/ui/mismatched_types/show_module.rs b/src/test/ui/mismatched_types/show_module.rs
new file mode 100644
index 000000000..61550b887
--- /dev/null
+++ b/src/test/ui/mismatched_types/show_module.rs
@@ -0,0 +1,18 @@
+pub mod blah {
+ pub mod baz {
+ pub struct Foo;
+ }
+}
+
+pub mod meh {
+ pub struct Foo;
+}
+
+pub type Foo = blah::baz::Foo;
+
+fn foo() -> Foo {
+ meh::Foo
+ //~^ ERROR mismatched types [E0308]
+}
+
+fn main() {}