summaryrefslogtreecommitdiffstats
path: root/test cases/java/8 codegen custom target/com/mesonbuild/TextPrinter.java
blob: dc2771c37d6ae6e3737ba52f7304eb29d6110e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.mesonbuild;

class TextPrinter {

    private String msg;

    TextPrinter(String s) {
        msg = s;
    }

    public void print() {
        System.out.println(msg);
    }
}