summary refs log tree commit diff
path: root/src/test/run-pass/module-polymorphism3.rc
blob: 27d9753d9d520fb9bcb353daedbce0eeeff4f239 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Use one template module to specify in a single file the implementation
// of functions for multiple types

#[path = "module-polymorphism3-files"]
mod mystd {
    #[legacy_exports];

    // The template is specified in float-template.rs
    #[path = "float-template"]
    mod float {
        #[legacy_exports];
        // The type of the float
        use inst::T;

        // Define T as appropriate for platform
        #[path = "inst_float.rs"]
        mod inst;
    }

    // Use the same template
    #[path = "float-template"]
    mod f64 {
        #[legacy_exports];

        use inst::T;

        // Define T as f64
        #[path = "inst_f64.rs"]
        mod inst;
    }

    #[path = "float-template"]
    mod f32 {
        #[legacy_exports];
        use inst::T;

        #[path = "inst_f32.rs"]
        mod inst;
    }

}