summaryrefslogtreecommitdiffstats
path: root/src/test/ui/statics/static-methods-in-traits2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/statics/static-methods-in-traits2.rs')
-rw-r--r--src/test/ui/statics/static-methods-in-traits2.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/ui/statics/static-methods-in-traits2.rs b/src/test/ui/statics/static-methods-in-traits2.rs
new file mode 100644
index 000000000..2c43ff6a7
--- /dev/null
+++ b/src/test/ui/statics/static-methods-in-traits2.rs
@@ -0,0 +1,22 @@
+// run-pass
+// pretty-expanded FIXME #23616
+
+pub trait Number: NumConv {
+ fn from<T:Number>(n: T) -> Self;
+}
+
+impl Number for f64 {
+ fn from<T:Number>(n: T) -> f64 { n.to_float() }
+}
+
+pub trait NumConv {
+ fn to_float(&self) -> f64;
+}
+
+impl NumConv for f64 {
+ fn to_float(&self) -> f64 { *self }
+}
+
+pub fn main() {
+ let _: f64 = Number::from(0.0f64);
+}